├── .DS_Store ├── .gitignore ├── DependencyInjectionExample.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── DependencyInjectionExample ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Bob.imageset │ │ ├── Bob@2x.png │ │ └── Contents.json │ └── Dave.imageset │ │ ├── Contents.json │ │ └── Dave@2x.png ├── Info.plist ├── Minion.swift ├── MinionService.swift └── ViewController.swift ├── DependencyInjectionExampleQuickTests ├── Info.plist └── ViewControllerSpec.swift ├── DependencyInjectionExampleTests ├── Info.plist └── ViewControllerTests.swift ├── README.md └── Vendor ├── Nimble ├── .gitignore ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE.md ├── Nimble.podspec ├── Nimble.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── Nimble-OSX.xcscheme │ │ └── Nimble-iOS.xcscheme ├── Nimble │ ├── Adapters │ │ ├── AdapterProtocols.swift │ │ ├── AssertionRecorder.swift │ │ └── XCTestHandler.swift │ ├── DSL+Wait.swift │ ├── DSL.swift │ ├── Expectation.swift │ ├── Expression.swift │ ├── FailureMessage.swift │ ├── Info.plist │ ├── Matchers │ │ ├── BeAKindOf.swift │ │ ├── BeAnInstanceOf.swift │ │ ├── BeCloseTo.swift │ │ ├── BeEmpty.swift │ │ ├── BeGreaterThan.swift │ │ ├── BeGreaterThanOrEqualTo.swift │ │ ├── BeIdenticalTo.swift │ │ ├── BeLessThan.swift │ │ ├── BeLessThanOrEqual.swift │ │ ├── BeLogical.swift │ │ ├── BeNil.swift │ │ ├── BeginWith.swift │ │ ├── Contain.swift │ │ ├── EndWith.swift │ │ ├── Equal.swift │ │ ├── Match.swift │ │ ├── MatcherProtocols.swift │ │ └── RaisesException.swift │ ├── Nimble.h │ ├── Utils │ │ ├── Functional.swift │ │ ├── Poll.swift │ │ ├── SourceLocation.swift │ │ └── Stringers.swift │ ├── Wrappers │ │ ├── AsyncMatcherWrapper.swift │ │ ├── BasicMatcherWrapper.swift │ │ ├── FullMatcherWrapper.swift │ │ ├── MatcherFunc.swift │ │ ├── NonNilMatcherWrapper.swift │ │ └── ObjCMatcher.swift │ └── objc │ │ ├── DSL.h │ │ ├── DSL.m │ │ ├── NMBExceptionCapture.h │ │ └── NMBExceptionCapture.m ├── NimbleTests │ ├── AsynchronousTest.swift │ ├── Helpers │ │ ├── ObjectWithLazyProperty.swift │ │ └── utils.swift │ ├── Info.plist │ ├── Matchers │ │ ├── BeAKindOfTest.swift │ │ ├── BeAnInstanceOfTest.swift │ │ ├── BeCloseToTest.swift │ │ ├── BeEmptyTest.swift │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ ├── BeGreaterThanTest.swift │ │ ├── BeIdenticalToObjectTest.swift │ │ ├── BeIdenticalToTest.swift │ │ ├── BeLessThanOrEqualToTest.swift │ │ ├── BeLessThanTest.swift │ │ ├── BeLogicalTest.swift │ │ ├── BeNilTest.swift │ │ ├── BeginWithTest.swift │ │ ├── ContainTest.swift │ │ ├── EndWithTest.swift │ │ ├── EqualTest.swift │ │ ├── MatchTest.swift │ │ └── RaisesExceptionTest.swift │ ├── SynchronousTests.swift │ └── objc │ │ ├── Nimble-OSXTests-Bridging-Header.h │ │ ├── NimbleSpecHelper.h │ │ ├── NimbleTests-Bridging-Header.h │ │ ├── ObjCAsyncTest.m │ │ ├── ObjCBeAnInstanceOfTest.m │ │ ├── ObjCBeCloseToTest.m │ │ ├── ObjCBeFalseTest.m │ │ ├── ObjCBeFalsyTest.m │ │ ├── ObjCBeGreaterThanOrEqualToTest.m │ │ ├── ObjCBeGreaterThanTest.m │ │ ├── ObjCBeIdenticalToTest.m │ │ ├── ObjCBeKindOfTest.m │ │ ├── ObjCBeLessThanOrEqualToTest.m │ │ ├── ObjCBeLessThanTest.m │ │ ├── ObjCBeNilTest.m │ │ ├── ObjCBeTrueTest.m │ │ ├── ObjCBeTruthyTest.m │ │ ├── ObjCBeginWithTest.m │ │ ├── ObjCContainTest.m │ │ ├── ObjCEndWithTest.m │ │ ├── ObjCEqualTest.m │ │ ├── ObjCMatchTest.m │ │ └── ObjCRaiseExceptionTest.m ├── README.md └── test └── Quick ├── .gitignore ├── .gitmodules ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── Quick Templates └── Quick Spec Class.xctemplate │ ├── Objective-C │ └── ___FILEBASENAME___.m │ ├── Swift │ └── ___FILEBASENAME___.swift │ ├── TemplateIcon.icns │ └── TemplateInfo.plist ├── Quick.podspec ├── Quick.xcodeproj ├── project.pbxproj ├── project.pbxproj.orig ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── Quick-OSX.xcscheme │ └── Quick-iOS.xcscheme ├── Quick.xcworkspace └── contents.xcworkspacedata ├── Quick ├── Callsite.swift ├── Configuration │ ├── Configuration.swift │ ├── QuickConfiguration.h │ └── QuickConfiguration.m ├── DSL │ ├── DSL.swift │ ├── QCKDSL.h │ ├── QCKDSL.m │ └── World+DSL.swift ├── Example.swift ├── ExampleGroup.swift ├── ExampleMetadata.swift ├── Failure.swift ├── Filter.swift ├── Hooks │ ├── Closures.swift │ ├── ExampleHooks.swift │ └── SuiteHooks.swift ├── Info.plist ├── NSString+QCKSelectorName.h ├── NSString+QCKSelectorName.m ├── Quick.h ├── QuickSpec.h ├── QuickSpec.m └── World.swift ├── QuickFocusedTests ├── FocusedTests+ObjC.m ├── FocusedTests.swift └── Info.plist ├── QuickTests ├── ExampleMetadataFunctionalTests.swift ├── Fixtures │ ├── FunctionalTests_SharedExamplesTests_SharedExamples.swift │ ├── Person.swift │ └── Poet.swift ├── FunctionalTests+ObjC.m ├── FunctionalTests.swift ├── FunctionalTests │ ├── AfterEachTests+ObjC.m │ ├── AfterEachTests.swift │ ├── AfterSuiteTests.swift │ ├── BeforeEachTests+ObjC.m │ ├── BeforeEachTests.swift │ ├── BeforeSuiteTests+Objc.m │ ├── BeforeSuiteTests.swift │ ├── Configuration │ │ ├── AfterEach │ │ │ ├── Configuration+AfterEach.swift │ │ │ └── Configuration+AfterEachTests.swift │ │ └── BeforeEach │ │ │ ├── Configuration+BeforeEach.swift │ │ │ └── Configuration+BeforeEachTests.swift │ ├── FailureTests+ObjC.m │ ├── ItTests+ObjC.m │ ├── ItTests.swift │ ├── PendingTests+ObjC.m │ ├── PendingTests.swift │ ├── SharedExamples+BeforeEachTests.swift │ ├── SharedExamplesTests.swift │ └── WorldExampleMetadataFunctionalTests.swift ├── Helpers │ ├── QCKSpecRunner.h │ ├── QCKSpecRunner.m │ ├── QuickTestsBridgingHeader.h │ └── XCTestObservationCenter.h ├── Info.plist └── QuickConfigurationTests.m ├── README.md └── Rakefile /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/.gitignore -------------------------------------------------------------------------------- /DependencyInjectionExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DependencyInjectionExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DependencyInjectionExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample/AppDelegate.swift -------------------------------------------------------------------------------- /DependencyInjectionExample/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /DependencyInjectionExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DependencyInjectionExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DependencyInjectionExample/Images.xcassets/Bob.imageset/Bob@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample/Images.xcassets/Bob.imageset/Bob@2x.png -------------------------------------------------------------------------------- /DependencyInjectionExample/Images.xcassets/Bob.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample/Images.xcassets/Bob.imageset/Contents.json -------------------------------------------------------------------------------- /DependencyInjectionExample/Images.xcassets/Dave.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample/Images.xcassets/Dave.imageset/Contents.json -------------------------------------------------------------------------------- /DependencyInjectionExample/Images.xcassets/Dave.imageset/Dave@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample/Images.xcassets/Dave.imageset/Dave@2x.png -------------------------------------------------------------------------------- /DependencyInjectionExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample/Info.plist -------------------------------------------------------------------------------- /DependencyInjectionExample/Minion.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample/Minion.swift -------------------------------------------------------------------------------- /DependencyInjectionExample/MinionService.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample/MinionService.swift -------------------------------------------------------------------------------- /DependencyInjectionExample/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExample/ViewController.swift -------------------------------------------------------------------------------- /DependencyInjectionExampleQuickTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExampleQuickTests/Info.plist -------------------------------------------------------------------------------- /DependencyInjectionExampleQuickTests/ViewControllerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExampleQuickTests/ViewControllerSpec.swift -------------------------------------------------------------------------------- /DependencyInjectionExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExampleTests/Info.plist -------------------------------------------------------------------------------- /DependencyInjectionExampleTests/ViewControllerTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/DependencyInjectionExampleTests/ViewControllerTests.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/README.md -------------------------------------------------------------------------------- /Vendor/Nimble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/.gitignore -------------------------------------------------------------------------------- /Vendor/Nimble/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/.travis.yml -------------------------------------------------------------------------------- /Vendor/Nimble/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/CONTRIBUTING.md -------------------------------------------------------------------------------- /Vendor/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/LICENSE.md -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble.podspec -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-OSX.xcscheme -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-iOS.xcscheme -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Adapters/XCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Adapters/XCTestHandler.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/DSL.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Expression.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Info.plist -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Nimble.h -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Utils/Poll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Utils/Poll.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Wrappers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Wrappers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Wrappers/BasicMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Wrappers/BasicMatcherWrapper.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Wrappers/FullMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Wrappers/FullMatcherWrapper.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Wrappers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Wrappers/MatcherFunc.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Wrappers/NonNilMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Wrappers/NonNilMatcherWrapper.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/Wrappers/ObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/Wrappers/ObjCMatcher.swift -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/objc/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/objc/DSL.h -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/objc/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/objc/DSL.m -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/objc/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/objc/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Vendor/Nimble/Nimble/objc/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/Nimble/objc/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/AsynchronousTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/AsynchronousTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Helpers/ObjectWithLazyProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Helpers/ObjectWithLazyProperty.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Helpers/utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Helpers/utils.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Info.plist -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeAKindOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeAKindOfTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeAnInstanceOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeAnInstanceOfTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeCloseToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeCloseToTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeEmptyTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeEmptyTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeGreaterThanOrEqualToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeGreaterThanOrEqualToTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeGreaterThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeGreaterThanTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeIdenticalToObjectTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeIdenticalToObjectTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeIdenticalToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeIdenticalToTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeLessThanOrEqualToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeLessThanOrEqualToTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeLessThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeLessThanTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeLogicalTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeLogicalTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeNilTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeNilTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/BeginWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/BeginWithTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/ContainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/ContainTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/EndWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/EndWithTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/EqualTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/EqualTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/MatchTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/MatchTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/Matchers/RaisesExceptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/Matchers/RaisesExceptionTest.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/SynchronousTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/SynchronousTests.swift -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/Nimble-OSXTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/Nimble-OSXTests-Bridging-Header.h -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/NimbleSpecHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/NimbleSpecHelper.h -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/NimbleTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/NimbleTests-Bridging-Header.h -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCAsyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCAsyncTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeAnInstanceOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeAnInstanceOfTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeCloseToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeCloseToTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeFalseTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeFalseTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeFalsyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeFalsyTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeGreaterThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeGreaterThanOrEqualToTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeGreaterThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeGreaterThanTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeIdenticalToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeIdenticalToTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeKindOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeKindOfTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeLessThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeLessThanOrEqualToTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeLessThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeLessThanTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeNilTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeNilTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeTrueTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeTrueTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeTruthyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeTruthyTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCBeginWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCBeginWithTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCContainTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCContainTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCEndWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCEndWithTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCEqualTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCEqualTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCMatchTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCMatchTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/NimbleTests/objc/ObjCRaiseExceptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/NimbleTests/objc/ObjCRaiseExceptionTest.m -------------------------------------------------------------------------------- /Vendor/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/README.md -------------------------------------------------------------------------------- /Vendor/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Nimble/test -------------------------------------------------------------------------------- /Vendor/Quick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/.gitignore -------------------------------------------------------------------------------- /Vendor/Quick/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/.gitmodules -------------------------------------------------------------------------------- /Vendor/Quick/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/.travis.yml -------------------------------------------------------------------------------- /Vendor/Quick/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/CONTRIBUTING.md -------------------------------------------------------------------------------- /Vendor/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/LICENSE -------------------------------------------------------------------------------- /Vendor/Quick/Quick Templates/Quick Spec Class.xctemplate/Objective-C/___FILEBASENAME___.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick Templates/Quick Spec Class.xctemplate/Objective-C/___FILEBASENAME___.m -------------------------------------------------------------------------------- /Vendor/Quick/Quick Templates/Quick Spec Class.xctemplate/Swift/___FILEBASENAME___.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick Templates/Quick Spec Class.xctemplate/Swift/___FILEBASENAME___.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick Templates/Quick Spec Class.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick Templates/Quick Spec Class.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /Vendor/Quick/Quick Templates/Quick Spec Class.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick Templates/Quick Spec Class.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Vendor/Quick/Quick.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick.podspec -------------------------------------------------------------------------------- /Vendor/Quick/Quick.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Vendor/Quick/Quick.xcodeproj/project.pbxproj.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick.xcodeproj/project.pbxproj.orig -------------------------------------------------------------------------------- /Vendor/Quick/Quick.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Vendor/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-OSX.xcscheme -------------------------------------------------------------------------------- /Vendor/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-iOS.xcscheme -------------------------------------------------------------------------------- /Vendor/Quick/Quick.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Vendor/Quick/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/Callsite.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick/Configuration/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Vendor/Quick/Quick/Configuration/QuickConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/Configuration/QuickConfiguration.m -------------------------------------------------------------------------------- /Vendor/Quick/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Vendor/Quick/Quick/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/DSL/QCKDSL.m -------------------------------------------------------------------------------- /Vendor/Quick/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/Example.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick/Failure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/Failure.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/Filter.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick/Hooks/ExampleHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/Hooks/ExampleHooks.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /Vendor/Quick/Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/Info.plist -------------------------------------------------------------------------------- /Vendor/Quick/Quick/NSString+QCKSelectorName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/NSString+QCKSelectorName.h -------------------------------------------------------------------------------- /Vendor/Quick/Quick/NSString+QCKSelectorName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/NSString+QCKSelectorName.m -------------------------------------------------------------------------------- /Vendor/Quick/Quick/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/Quick.h -------------------------------------------------------------------------------- /Vendor/Quick/Quick/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/QuickSpec.h -------------------------------------------------------------------------------- /Vendor/Quick/Quick/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/QuickSpec.m -------------------------------------------------------------------------------- /Vendor/Quick/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Quick/World.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickFocusedTests/FocusedTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickFocusedTests/FocusedTests+ObjC.m -------------------------------------------------------------------------------- /Vendor/Quick/QuickFocusedTests/FocusedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickFocusedTests/FocusedTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickFocusedTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickFocusedTests/Info.plist -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/ExampleMetadataFunctionalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/ExampleMetadataFunctionalTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/Fixtures/FunctionalTests_SharedExamplesTests_SharedExamples.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/Fixtures/FunctionalTests_SharedExamplesTests_SharedExamples.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/Fixtures/Person.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/Fixtures/Person.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/Fixtures/Poet.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/Fixtures/Poet.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests+ObjC.m -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/AfterEachTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/AfterEachTests+ObjC.m -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/AfterEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/AfterEachTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/AfterSuiteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/AfterSuiteTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/BeforeEachTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/BeforeEachTests+ObjC.m -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/BeforeEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/BeforeEachTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/BeforeSuiteTests+Objc.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/BeforeSuiteTests+Objc.m -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/BeforeSuiteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/BeforeSuiteTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEach.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEach.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEachTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEach.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEach.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEachTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/FailureTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/FailureTests+ObjC.m -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/ItTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/ItTests+ObjC.m -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/ItTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/ItTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/PendingTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/PendingTests+ObjC.m -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/PendingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/PendingTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/SharedExamples+BeforeEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/SharedExamples+BeforeEachTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/SharedExamplesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/SharedExamplesTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/FunctionalTests/WorldExampleMetadataFunctionalTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/FunctionalTests/WorldExampleMetadataFunctionalTests.swift -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/Helpers/QCKSpecRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/Helpers/QCKSpecRunner.h -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/Helpers/QCKSpecRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/Helpers/QCKSpecRunner.m -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/Helpers/QuickTestsBridgingHeader.h: -------------------------------------------------------------------------------- 1 | #import "QCKSpecRunner.h" 2 | -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/Helpers/XCTestObservationCenter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/Helpers/XCTestObservationCenter.h -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/Info.plist -------------------------------------------------------------------------------- /Vendor/Quick/QuickTests/QuickConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/QuickTests/QuickConfigurationTests.m -------------------------------------------------------------------------------- /Vendor/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/README.md -------------------------------------------------------------------------------- /Vendor/Quick/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NatashaTheRobot/DependencyInjectionSwiftExample/HEAD/Vendor/Quick/Rakefile --------------------------------------------------------------------------------