├── .github └── FUNDING.yml ├── .gitignore ├── .golangci.yaml ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── address.go ├── address_test.go ├── datetime.go ├── datetime_test.go ├── example_custom_faker_test.go ├── example_single_fake_data_test.go ├── example_with_tags_lang_test.go ├── example_with_tags_lenbounds_test.go ├── example_with_tags_slicelength_test.go ├── example_with_tags_test.go ├── example_with_tags_unique_test.go ├── example_without_tag_test.go ├── faker.go ├── faker_test.go ├── go.mod ├── go.sum ├── internet.go ├── internet_test.go ├── lorem.go ├── lorem_test.go ├── misc └── makefile │ └── tools.Makefile ├── payment.go ├── payment_test.go ├── person.go ├── person_test.go ├── phone.go ├── phone_test.go ├── pkg ├── errors │ └── generic.go ├── interfaces │ ├── language.go │ ├── number.go │ └── type.go ├── options │ └── options.go └── slice │ └── helpers.go ├── price.go ├── price_test.go ├── random_source.go ├── random_source_test.go ├── tag_argument_extractor.go ├── tag_argument_extractor_test.go ├── uuid.go └── uuid_test.go /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [bxcodec] 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/.golangci.yaml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/README.md -------------------------------------------------------------------------------- /address.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/address.go -------------------------------------------------------------------------------- /address_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/address_test.go -------------------------------------------------------------------------------- /datetime.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/datetime.go -------------------------------------------------------------------------------- /datetime_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/datetime_test.go -------------------------------------------------------------------------------- /example_custom_faker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/example_custom_faker_test.go -------------------------------------------------------------------------------- /example_single_fake_data_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/example_single_fake_data_test.go -------------------------------------------------------------------------------- /example_with_tags_lang_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/example_with_tags_lang_test.go -------------------------------------------------------------------------------- /example_with_tags_lenbounds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/example_with_tags_lenbounds_test.go -------------------------------------------------------------------------------- /example_with_tags_slicelength_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/example_with_tags_slicelength_test.go -------------------------------------------------------------------------------- /example_with_tags_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/example_with_tags_test.go -------------------------------------------------------------------------------- /example_with_tags_unique_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/example_with_tags_unique_test.go -------------------------------------------------------------------------------- /example_without_tag_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/example_without_tag_test.go -------------------------------------------------------------------------------- /faker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/faker.go -------------------------------------------------------------------------------- /faker_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/faker_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/go.sum -------------------------------------------------------------------------------- /internet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/internet.go -------------------------------------------------------------------------------- /internet_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/internet_test.go -------------------------------------------------------------------------------- /lorem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/lorem.go -------------------------------------------------------------------------------- /lorem_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/lorem_test.go -------------------------------------------------------------------------------- /misc/makefile/tools.Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/misc/makefile/tools.Makefile -------------------------------------------------------------------------------- /payment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/payment.go -------------------------------------------------------------------------------- /payment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/payment_test.go -------------------------------------------------------------------------------- /person.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/person.go -------------------------------------------------------------------------------- /person_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/person_test.go -------------------------------------------------------------------------------- /phone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/phone.go -------------------------------------------------------------------------------- /phone_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/phone_test.go -------------------------------------------------------------------------------- /pkg/errors/generic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/pkg/errors/generic.go -------------------------------------------------------------------------------- /pkg/interfaces/language.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/pkg/interfaces/language.go -------------------------------------------------------------------------------- /pkg/interfaces/number.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/pkg/interfaces/number.go -------------------------------------------------------------------------------- /pkg/interfaces/type.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/pkg/interfaces/type.go -------------------------------------------------------------------------------- /pkg/options/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/pkg/options/options.go -------------------------------------------------------------------------------- /pkg/slice/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/pkg/slice/helpers.go -------------------------------------------------------------------------------- /price.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/price.go -------------------------------------------------------------------------------- /price_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/price_test.go -------------------------------------------------------------------------------- /random_source.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/random_source.go -------------------------------------------------------------------------------- /random_source_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/random_source_test.go -------------------------------------------------------------------------------- /tag_argument_extractor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/tag_argument_extractor.go -------------------------------------------------------------------------------- /tag_argument_extractor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/tag_argument_extractor_test.go -------------------------------------------------------------------------------- /uuid.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/uuid.go -------------------------------------------------------------------------------- /uuid_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bxcodec/faker/HEAD/uuid_test.go --------------------------------------------------------------------------------