├── .github └── workflows │ ├── ci.yml │ ├── spm.yml │ └── swiftlint.yml ├── .gitignore ├── .swift-version ├── .swiftlint.yml ├── CONTRIBUTING.md ├── Fakery.podspec ├── Fakery.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ ├── IDEWorkspaceChecks.plist │ │ └── swiftpm │ │ └── Package.resolved └── xcshareddata │ └── xcschemes │ ├── Fakery-iOS.xcscheme │ ├── Fakery-macOS.xcscheme │ └── Fakery-tvOS.xcscheme ├── Images └── logo.png ├── LICENSE.md ├── Package.resolved ├── Package.swift ├── Project ├── Info-Mac.plist ├── Info-Tests-Mac.plist ├── Info-Tests-iOS.plist ├── Info-Tests-tvOS.plist ├── Info-iOS.plist └── Info-tvOS.plist ├── README.md ├── README.md.orig ├── Resources ├── Sources └── Fakery │ ├── Config.swift │ ├── Data │ ├── Parser.swift │ └── Provider.swift │ ├── Extensions │ ├── ArrayExtension.swift │ └── StringExtensions.swift │ ├── Faker.swift │ ├── Generators │ ├── Address.swift │ ├── App.swift │ ├── Bank.swift │ ├── Business.swift │ ├── Car.swift │ ├── Cat.swift │ ├── Commerce.swift │ ├── Company.swift │ ├── Date.swift │ ├── Gender.swift │ ├── Generator.swift │ ├── Ham.swift │ ├── Hobbit.swift │ ├── House.swift │ ├── Internet.swift │ ├── Lorem.swift │ ├── Name.swift │ ├── Number.swift │ ├── PhoneNumber.swift │ ├── ProgrammingLanguage.swift │ ├── Team.swift │ ├── Vehicle.swift │ └── Zelda.swift │ └── Resources │ └── Locales │ ├── de-AT.json │ ├── de-CH.json │ ├── de.json │ ├── en-AU.json │ ├── en-CA.json │ ├── en-GB.json │ ├── en-IND.json │ ├── en-TEST.json │ ├── en-US.json │ ├── en.json │ ├── es.json │ ├── fa.json │ ├── fr.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── nb-NO.json │ ├── nl.json │ ├── pl.json │ ├── pt-BR.json │ ├── ru.json │ ├── sk.json │ ├── sv.json │ ├── tr-TR.json │ ├── uk.json │ ├── zh-CN.json │ └── zh-TW.json └── Tests ├── Fakery ├── ConfigSpec.swift ├── Data │ ├── ParserSpec.swift │ └── ProviderSpec.swift ├── FakerSpec.swift └── Generators │ ├── AddressSpec.swift │ ├── AppSpec.swift │ ├── BankSpec.swift │ ├── BusinessSpec.swift │ ├── CarSpec.swift │ ├── CatSpec.swift │ ├── CommerceSpec.swift │ ├── CompanySpec.swift │ ├── DateSpec.swift │ ├── GenderSpec.swift │ ├── GeneratorSpec.swift │ ├── HamSpec.swift │ ├── HobbitSpec.swift │ ├── HouseSpec.swift │ ├── InternetSpec.swift │ ├── LoremSpec.swift │ ├── NameSpec.swift │ ├── NumberSpec.swift │ ├── PhoneNumberSpec.swift │ ├── ProgrammingLanguageSpec.swift │ ├── TeamSpec.swift │ ├── VehicleSpec.swift │ └── ZeldaSpec.swift └── LinuxMain.swift /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/spm.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/.github/workflows/spm.yml -------------------------------------------------------------------------------- /.github/workflows/swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/.github/workflows/swiftlint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.3.1 2 | -------------------------------------------------------------------------------- /.swiftlint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/.swiftlint.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Fakery.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Fakery.podspec -------------------------------------------------------------------------------- /Fakery.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Fakery.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Fakery.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Fakery.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Fakery.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Fakery.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Fakery.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Fakery.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved -------------------------------------------------------------------------------- /Fakery.xcodeproj/xcshareddata/xcschemes/Fakery-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Fakery.xcodeproj/xcshareddata/xcschemes/Fakery-iOS.xcscheme -------------------------------------------------------------------------------- /Fakery.xcodeproj/xcshareddata/xcschemes/Fakery-macOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Fakery.xcodeproj/xcshareddata/xcschemes/Fakery-macOS.xcscheme -------------------------------------------------------------------------------- /Fakery.xcodeproj/xcshareddata/xcschemes/Fakery-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Fakery.xcodeproj/xcshareddata/xcschemes/Fakery-tvOS.xcscheme -------------------------------------------------------------------------------- /Images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Images/logo.png -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Package.resolved -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Package.swift -------------------------------------------------------------------------------- /Project/Info-Mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Project/Info-Mac.plist -------------------------------------------------------------------------------- /Project/Info-Tests-Mac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Project/Info-Tests-Mac.plist -------------------------------------------------------------------------------- /Project/Info-Tests-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Project/Info-Tests-iOS.plist -------------------------------------------------------------------------------- /Project/Info-Tests-tvOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Project/Info-Tests-tvOS.plist -------------------------------------------------------------------------------- /Project/Info-iOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Project/Info-iOS.plist -------------------------------------------------------------------------------- /Project/Info-tvOS.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Project/Info-tvOS.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/README.md -------------------------------------------------------------------------------- /README.md.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/README.md.orig -------------------------------------------------------------------------------- /Resources: -------------------------------------------------------------------------------- 1 | Sources/Fakery/Resources -------------------------------------------------------------------------------- /Sources/Fakery/Config.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Config.swift -------------------------------------------------------------------------------- /Sources/Fakery/Data/Parser.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Data/Parser.swift -------------------------------------------------------------------------------- /Sources/Fakery/Data/Provider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Data/Provider.swift -------------------------------------------------------------------------------- /Sources/Fakery/Extensions/ArrayExtension.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Extensions/ArrayExtension.swift -------------------------------------------------------------------------------- /Sources/Fakery/Extensions/StringExtensions.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Extensions/StringExtensions.swift -------------------------------------------------------------------------------- /Sources/Fakery/Faker.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Faker.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Address.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Address.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/App.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/App.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Bank.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Bank.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Business.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Business.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Car.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Car.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Cat.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Cat.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Commerce.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Commerce.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Company.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Company.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Date.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Date.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Gender.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Gender.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Generator.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Generator.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Ham.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Ham.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Hobbit.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Hobbit.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/House.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/House.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Internet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Internet.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Lorem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Lorem.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Name.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Name.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Number.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Number.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/PhoneNumber.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/PhoneNumber.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/ProgrammingLanguage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/ProgrammingLanguage.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Team.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Team.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Vehicle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Vehicle.swift -------------------------------------------------------------------------------- /Sources/Fakery/Generators/Zelda.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Generators/Zelda.swift -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/de-AT.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/de-AT.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/de-CH.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/de-CH.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/de.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/en-AU.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/en-AU.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/en-CA.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/en-CA.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/en-GB.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/en-GB.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/en-IND.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/en-IND.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/en-TEST.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/en-TEST.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/en-US.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/en-US.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/en.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/es.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/fa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/fa.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/fr.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/it.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/ja.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/ko.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/nb-NO.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/nb-NO.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/nl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/nl.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/pl.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/pt-BR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/pt-BR.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/ru.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/sk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/sk.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/sv.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/sv.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/tr-TR.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/tr-TR.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/uk.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/uk.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/zh-CN.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/zh-CN.json -------------------------------------------------------------------------------- /Sources/Fakery/Resources/Locales/zh-TW.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Sources/Fakery/Resources/Locales/zh-TW.json -------------------------------------------------------------------------------- /Tests/Fakery/ConfigSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/ConfigSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Data/ParserSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Data/ParserSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Data/ProviderSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Data/ProviderSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/FakerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/FakerSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/AddressSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/AddressSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/AppSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/AppSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/BankSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/BankSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/BusinessSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/BusinessSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/CarSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/CarSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/CatSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/CatSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/CommerceSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/CommerceSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/CompanySpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/CompanySpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/DateSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/DateSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/GenderSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/GenderSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/GeneratorSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/GeneratorSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/HamSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/HamSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/HobbitSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/HobbitSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/HouseSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/HouseSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/InternetSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/InternetSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/LoremSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/LoremSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/NameSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/NameSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/NumberSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/NumberSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/PhoneNumberSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/PhoneNumberSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/ProgrammingLanguageSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/ProgrammingLanguageSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/TeamSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/TeamSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/VehicleSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/VehicleSpec.swift -------------------------------------------------------------------------------- /Tests/Fakery/Generators/ZeldaSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/Fakery/Generators/ZeldaSpec.swift -------------------------------------------------------------------------------- /Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vadymmarkov/Fakery/HEAD/Tests/LinuxMain.swift --------------------------------------------------------------------------------