├── .gitignore ├── AzimoTestKit.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata ├── xcshareddata │ └── xcschemes │ │ └── AzimoTestKit.xcscheme └── xcuserdata │ └── mateusz.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── AzimoTestKit ├── Classes │ ├── DictionaryAsserts.swift │ ├── FakeObject.swift │ ├── GeneralAsserts.swift │ ├── OptionalTools.swift │ └── StringError.swift └── SupportingFiles │ ├── AzimoTestKit.h │ └── Info.plist ├── AzimoTestKitTests ├── DictionaryAssertsTests.swift ├── FakeInvocationTests.swift ├── GeneralAssertsTest.swift └── Info.plist ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/.gitignore -------------------------------------------------------------------------------- /AzimoTestKit.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKit.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /AzimoTestKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKit.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /AzimoTestKit.xcodeproj/xcshareddata/xcschemes/AzimoTestKit.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKit.xcodeproj/xcshareddata/xcschemes/AzimoTestKit.xcscheme -------------------------------------------------------------------------------- /AzimoTestKit.xcodeproj/xcuserdata/mateusz.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKit.xcodeproj/xcuserdata/mateusz.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /AzimoTestKit/Classes/DictionaryAsserts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKit/Classes/DictionaryAsserts.swift -------------------------------------------------------------------------------- /AzimoTestKit/Classes/FakeObject.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKit/Classes/FakeObject.swift -------------------------------------------------------------------------------- /AzimoTestKit/Classes/GeneralAsserts.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKit/Classes/GeneralAsserts.swift -------------------------------------------------------------------------------- /AzimoTestKit/Classes/OptionalTools.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKit/Classes/OptionalTools.swift -------------------------------------------------------------------------------- /AzimoTestKit/Classes/StringError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKit/Classes/StringError.swift -------------------------------------------------------------------------------- /AzimoTestKit/SupportingFiles/AzimoTestKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKit/SupportingFiles/AzimoTestKit.h -------------------------------------------------------------------------------- /AzimoTestKit/SupportingFiles/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKit/SupportingFiles/Info.plist -------------------------------------------------------------------------------- /AzimoTestKitTests/DictionaryAssertsTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKitTests/DictionaryAssertsTests.swift -------------------------------------------------------------------------------- /AzimoTestKitTests/FakeInvocationTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKitTests/FakeInvocationTests.swift -------------------------------------------------------------------------------- /AzimoTestKitTests/GeneralAssertsTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKitTests/GeneralAssertsTest.swift -------------------------------------------------------------------------------- /AzimoTestKitTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/AzimoTestKitTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AzimoLabs/AzimoTestKit/HEAD/README.md --------------------------------------------------------------------------------