├── .gitattributes ├── .gitignore ├── Cartfile ├── Cartfile.private ├── Cartfile.resolved ├── Carthage ├── Build │ └── iOS │ │ ├── 12C19D20-91D9-3107-88E7-6921AE57BCCD.bcsymbolmap │ │ ├── 3C35C5C7-AA9E-3F5B-9750-FB56DA071FF1.bcsymbolmap │ │ ├── 3F76BE91-465C-360D-A975-89414D25ED4C.bcsymbolmap │ │ ├── F147E425-FC95-3259-B90E-4296E904F98C.bcsymbolmap │ │ ├── Nimble.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Nimble │ │ ├── Nimble.framework │ │ ├── Headers │ │ │ ├── DSL.h │ │ │ ├── NMBExceptionCapture.h │ │ │ ├── NMBStringify.h │ │ │ ├── Nimble-Swift.h │ │ │ └── Nimble.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── Nimble.swiftmodule │ │ │ │ ├── arm.swiftdoc │ │ │ │ ├── arm.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ ├── arm64.swiftmodule │ │ │ │ ├── i386.swiftdoc │ │ │ │ ├── i386.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ └── Nimble │ │ ├── Quick.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Quick │ │ ├── Quick.framework │ │ ├── Headers │ │ │ ├── QCKDSL.h │ │ │ ├── Quick-Swift.h │ │ │ ├── Quick.h │ │ │ ├── QuickConfiguration.h │ │ │ └── QuickSpec.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── Quick.swiftmodule │ │ │ │ ├── arm.swiftdoc │ │ │ │ ├── arm.swiftmodule │ │ │ │ ├── arm64.swiftdoc │ │ │ │ ├── arm64.swiftmodule │ │ │ │ ├── i386.swiftdoc │ │ │ │ ├── i386.swiftmodule │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ └── x86_64.swiftmodule │ │ │ └── module.modulemap │ │ └── Quick │ │ ├── Realm.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── Realm │ │ ├── Realm.framework │ │ ├── CHANGELOG.md │ │ ├── Headers │ │ │ ├── RLMArray.h │ │ │ ├── RLMCollection.h │ │ │ ├── RLMConstants.h │ │ │ ├── RLMMigration.h │ │ │ ├── RLMObject.h │ │ │ ├── RLMObjectBase.h │ │ │ ├── RLMObjectBase_Dynamic.h │ │ │ ├── RLMObjectSchema.h │ │ │ ├── RLMPlatform.h │ │ │ ├── RLMProperty.h │ │ │ ├── RLMRealm.h │ │ │ ├── RLMRealmConfiguration.h │ │ │ ├── RLMRealm_Dynamic.h │ │ │ ├── RLMResults.h │ │ │ ├── RLMSchema.h │ │ │ └── Realm.h │ │ ├── Info.plist │ │ ├── LICENSE │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── PrivateHeaders │ │ │ ├── RLMAccessor.h │ │ │ ├── RLMArray_Private.h │ │ │ ├── RLMListBase.h │ │ │ ├── RLMMigration_Private.h │ │ │ ├── RLMObjectSchema_Private.h │ │ │ ├── RLMObjectStore.h │ │ │ ├── RLMObject_Private.h │ │ │ ├── RLMOptionalBase.h │ │ │ ├── RLMProperty_Private.h │ │ │ ├── RLMRealmConfiguration_Private.h │ │ │ ├── RLMRealmUtil.hpp │ │ │ ├── RLMRealm_Private.h │ │ │ ├── RLMResults_Private.h │ │ │ └── RLMSchema_Private.h │ │ ├── Realm │ │ └── strip-frameworks.sh │ │ ├── RealmSwift.framework.dSYM │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── RealmSwift │ │ └── RealmSwift.framework │ │ ├── Headers │ │ └── RealmSwift-Swift.h │ │ ├── Info.plist │ │ ├── Modules │ │ ├── RealmSwift.swiftmodule │ │ │ ├── arm.swiftdoc │ │ │ ├── arm.swiftmodule │ │ │ ├── arm64.swiftdoc │ │ │ ├── arm64.swiftmodule │ │ │ ├── i386.swiftdoc │ │ │ ├── i386.swiftmodule │ │ │ ├── x86_64.swiftdoc │ │ │ └── x86_64.swiftmodule │ │ └── module.modulemap │ │ └── RealmSwift └── Checkouts │ ├── Nimble │ ├── .gitignore │ ├── .ruby-version │ ├── .swift-version │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── Carthage │ │ └── Build │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE.md │ ├── Nimble.podspec │ ├── Nimble.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Nimble-OSX.xcscheme │ │ │ ├── Nimble-iOS.xcscheme │ │ │ └── Nimble-tvOS.xcscheme │ ├── Nimble │ │ ├── Adapters │ │ │ ├── AdapterProtocols.swift │ │ │ ├── AssertionDispatcher.swift │ │ │ ├── AssertionRecorder.swift │ │ │ └── NimbleXCTestHandler.swift │ │ ├── DSL+Wait.swift │ │ ├── DSL.swift │ │ ├── Expectation.swift │ │ ├── Expression.swift │ │ ├── FailureMessage.swift │ │ ├── Info.plist │ │ ├── Matchers │ │ │ ├── AllPass.swift │ │ │ ├── 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 │ │ ├── ObjCExpectation.swift │ │ ├── Utils │ │ │ ├── Functional.swift │ │ │ ├── Poll.swift │ │ │ ├── SourceLocation.swift │ │ │ └── Stringers.swift │ │ ├── Wrappers │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ ├── MatcherFunc.swift │ │ │ └── ObjCMatcher.swift │ │ └── objc │ │ │ ├── DSL.h │ │ │ ├── DSL.m │ │ │ ├── NMBExceptionCapture.h │ │ │ └── NMBExceptionCapture.m │ ├── NimbleTests │ │ ├── AsynchronousTest.swift │ │ ├── Helpers │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ └── utils.swift │ │ ├── Info.plist │ │ ├── Matchers │ │ │ ├── AllPassTest.swift │ │ │ ├── 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 │ │ │ ├── ObjCAllPassTest.m │ │ │ ├── ObjCAsyncTest.m │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ ├── ObjCBeCloseToTest.m │ │ │ ├── ObjCBeEmptyTest.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 │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── Nimble │ │ │ ├── Adapters │ │ │ ├── AdapterProtocols.swift │ │ │ ├── AssertionDispatcher.swift │ │ │ ├── AssertionRecorder.swift │ │ │ ├── NimbleEnvironment.swift │ │ │ ├── NimbleXCTestHandler.swift │ │ │ ├── NonObjectiveC │ │ │ │ └── ExceptionCapture.swift │ │ │ └── ObjectiveC │ │ │ │ ├── CurrentTestCaseTracker.h │ │ │ │ ├── DSL.h │ │ │ │ ├── DSL.m │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ ├── NMBExceptionCapture.m │ │ │ │ ├── NMBExpectation.swift │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ ├── NMBStringify.h │ │ │ │ ├── NMBStringify.m │ │ │ │ └── XCTestObservationCenter+Register.m │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Info.plist │ │ │ ├── Matchers │ │ │ ├── AllPass.swift │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ ├── BeAKindOf.swift │ │ │ ├── BeAnInstanceOf.swift │ │ │ ├── BeCloseTo.swift │ │ │ ├── BeEmpty.swift │ │ │ ├── BeGreaterThan.swift │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ ├── BeIdenticalTo.swift │ │ │ ├── BeLessThan.swift │ │ │ ├── BeLessThanOrEqual.swift │ │ │ ├── BeLogical.swift │ │ │ ├── BeNil.swift │ │ │ ├── BeVoid.swift │ │ │ ├── BeginWith.swift │ │ │ ├── Contain.swift │ │ │ ├── EndWith.swift │ │ │ ├── Equal.swift │ │ │ ├── HaveCount.swift │ │ │ ├── Match.swift │ │ │ ├── MatchError.swift │ │ │ ├── MatcherFunc.swift │ │ │ ├── MatcherProtocols.swift │ │ │ ├── PostNotification.swift │ │ │ ├── RaisesException.swift │ │ │ ├── SatisfyAnyOf.swift │ │ │ └── ThrowError.swift │ │ │ ├── Nimble.h │ │ │ └── Utils │ │ │ ├── Async.swift │ │ │ ├── Errors.swift │ │ │ ├── Functional.swift │ │ │ ├── SourceLocation.swift │ │ │ └── Stringers.swift │ ├── Tests │ │ ├── LinuxMain.swift │ │ └── Nimble │ │ │ ├── AsynchronousTest.swift │ │ │ ├── Helpers │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ ├── XCTestCaseProvider.swift │ │ │ └── utils.swift │ │ │ ├── Info.plist │ │ │ ├── Matchers │ │ │ ├── AllPassTest.swift │ │ │ ├── BeAKindOfTest.swift │ │ │ ├── BeAnInstanceOfTest.swift │ │ │ ├── BeCloseToTest.swift │ │ │ ├── BeEmptyTest.swift │ │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ │ ├── BeGreaterThanTest.swift │ │ │ ├── BeIdenticalToObjectTest.swift │ │ │ ├── BeIdenticalToTest.swift │ │ │ ├── BeLessThanOrEqualToTest.swift │ │ │ ├── BeLessThanTest.swift │ │ │ ├── BeLogicalTest.swift │ │ │ ├── BeNilTest.swift │ │ │ ├── BeVoidTest.swift │ │ │ ├── BeginWithTest.swift │ │ │ ├── ContainTest.swift │ │ │ ├── EndWithTest.swift │ │ │ ├── EqualTest.swift │ │ │ ├── HaveCountTest.swift │ │ │ ├── MatchErrorTest.swift │ │ │ ├── MatchTest.swift │ │ │ ├── PostNotificationTest.swift │ │ │ ├── RaisesExceptionTest.swift │ │ │ ├── SatisfyAnyOfTest.swift │ │ │ └── ThrowErrorTest.swift │ │ │ ├── SynchronousTests.swift │ │ │ ├── UserDescriptionTest.swift │ │ │ └── objc │ │ │ ├── NimbleSpecHelper.h │ │ │ ├── ObjCAllPassTest.m │ │ │ ├── ObjCAsyncTest.m │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ ├── ObjCBeCloseToTest.m │ │ │ ├── ObjCBeEmptyTest.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 │ │ │ ├── ObjCHaveCount.m │ │ │ ├── ObjCMatchTest.m │ │ │ ├── ObjCRaiseExceptionTest.m │ │ │ ├── ObjCSatisfyAnyOfTest.m │ │ │ ├── ObjCSyncTest.m │ │ │ ├── ObjCUserDescriptionTest.m │ │ │ └── ObjcStringersTest.m │ ├── circle.yml │ ├── script │ │ └── release │ └── test │ └── Quick │ ├── .gitignore │ ├── .gitmodules │ ├── .ruby-version │ ├── .swift-version │ ├── .travis.yml │ ├── CONTRIBUTING.md │ ├── Documentation │ ├── en-us │ │ ├── ArrangeActAssert.md │ │ ├── BehavioralTesting.md │ │ ├── ConfiguringQuick.md │ │ ├── InstallingFileTemplates.md │ │ ├── InstallingQuick.md │ │ ├── MoreResources.md │ │ ├── NimbleAssertions.md │ │ ├── QuickExamplesAndGroups.md │ │ ├── QuickInObjectiveC.md │ │ ├── README.md │ │ ├── SettingUpYourXcodeProject.md │ │ ├── SharedExamples.md │ │ └── TestingApps.md │ ├── ja │ │ ├── ArrangeActAssert.md │ │ ├── BehavioralTesting.md │ │ ├── ConfiguringQuick.md │ │ ├── InstallingFileTemplates.md │ │ ├── InstallingQuick.md │ │ ├── MoreResources.md │ │ ├── NimbleAssertions.md │ │ ├── QuickExamplesAndGroups.md │ │ ├── QuickInObjectiveC.md │ │ ├── README.md │ │ ├── SettingUpYourXcodeProject.md │ │ ├── SharedExamples.md │ │ └── TestingApps.md │ └── zh-cn │ │ └── SettingUpYourXcodeProject.md │ ├── Externals │ └── Nimble │ │ ├── .gitignore │ │ ├── .ruby-version │ │ ├── .swift-version │ │ ├── .travis.yml │ │ ├── CONTRIBUTING.md │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── LICENSE.md │ │ ├── Nimble.podspec │ │ ├── Nimble.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Nimble-OSX.xcscheme │ │ │ ├── Nimble-iOS.xcscheme │ │ │ └── Nimble-tvOS.xcscheme │ │ ├── Package.swift │ │ ├── README.md │ │ ├── Sources │ │ └── Nimble │ │ │ ├── Adapters │ │ │ ├── AdapterProtocols.swift │ │ │ ├── AssertionDispatcher.swift │ │ │ ├── AssertionRecorder.swift │ │ │ ├── NimbleEnvironment.swift │ │ │ ├── NimbleXCTestHandler.swift │ │ │ ├── NonObjectiveC │ │ │ │ └── ExceptionCapture.swift │ │ │ └── ObjectiveC │ │ │ │ ├── CurrentTestCaseTracker.h │ │ │ │ ├── DSL.h │ │ │ │ ├── DSL.m │ │ │ │ ├── NMBExceptionCapture.h │ │ │ │ ├── NMBExceptionCapture.m │ │ │ │ ├── NMBExpectation.swift │ │ │ │ ├── NMBObjCMatcher.swift │ │ │ │ ├── NMBStringify.h │ │ │ │ ├── NMBStringify.m │ │ │ │ └── XCTestObservationCenter+Register.m │ │ │ ├── DSL+Wait.swift │ │ │ ├── DSL.swift │ │ │ ├── Expectation.swift │ │ │ ├── Expression.swift │ │ │ ├── FailureMessage.swift │ │ │ ├── Info.plist │ │ │ ├── Matchers │ │ │ ├── AllPass.swift │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ ├── BeAKindOf.swift │ │ │ ├── BeAnInstanceOf.swift │ │ │ ├── BeCloseTo.swift │ │ │ ├── BeEmpty.swift │ │ │ ├── BeGreaterThan.swift │ │ │ ├── BeGreaterThanOrEqualTo.swift │ │ │ ├── BeIdenticalTo.swift │ │ │ ├── BeLessThan.swift │ │ │ ├── BeLessThanOrEqual.swift │ │ │ ├── BeLogical.swift │ │ │ ├── BeNil.swift │ │ │ ├── BeVoid.swift │ │ │ ├── BeginWith.swift │ │ │ ├── Contain.swift │ │ │ ├── EndWith.swift │ │ │ ├── Equal.swift │ │ │ ├── HaveCount.swift │ │ │ ├── Match.swift │ │ │ ├── MatchError.swift │ │ │ ├── MatcherFunc.swift │ │ │ ├── MatcherProtocols.swift │ │ │ ├── PostNotification.swift │ │ │ ├── RaisesException.swift │ │ │ ├── SatisfyAnyOf.swift │ │ │ └── ThrowError.swift │ │ │ ├── Nimble.h │ │ │ └── Utils │ │ │ ├── Async.swift │ │ │ ├── Errors.swift │ │ │ ├── Functional.swift │ │ │ ├── SourceLocation.swift │ │ │ └── Stringers.swift │ │ ├── Tests │ │ ├── LinuxMain.swift │ │ └── Nimble │ │ │ ├── AsynchronousTest.swift │ │ │ ├── Helpers │ │ │ ├── ObjectWithLazyProperty.swift │ │ │ ├── XCTestCaseProvider.swift │ │ │ └── utils.swift │ │ │ ├── Info.plist │ │ │ ├── Matchers │ │ │ ├── AllPassTest.swift │ │ │ ├── BeAKindOfTest.swift │ │ │ ├── BeAnInstanceOfTest.swift │ │ │ ├── BeCloseToTest.swift │ │ │ ├── BeEmptyTest.swift │ │ │ ├── BeGreaterThanOrEqualToTest.swift │ │ │ ├── BeGreaterThanTest.swift │ │ │ ├── BeIdenticalToObjectTest.swift │ │ │ ├── BeIdenticalToTest.swift │ │ │ ├── BeLessThanOrEqualToTest.swift │ │ │ ├── BeLessThanTest.swift │ │ │ ├── BeLogicalTest.swift │ │ │ ├── BeNilTest.swift │ │ │ ├── BeVoidTest.swift │ │ │ ├── BeginWithTest.swift │ │ │ ├── ContainTest.swift │ │ │ ├── EndWithTest.swift │ │ │ ├── EqualTest.swift │ │ │ ├── HaveCountTest.swift │ │ │ ├── MatchErrorTest.swift │ │ │ ├── MatchTest.swift │ │ │ ├── PostNotificationTest.swift │ │ │ ├── RaisesExceptionTest.swift │ │ │ ├── SatisfyAnyOfTest.swift │ │ │ └── ThrowErrorTest.swift │ │ │ ├── SynchronousTests.swift │ │ │ ├── UserDescriptionTest.swift │ │ │ └── objc │ │ │ ├── NimbleSpecHelper.h │ │ │ ├── ObjCAllPassTest.m │ │ │ ├── ObjCAsyncTest.m │ │ │ ├── ObjCBeAnInstanceOfTest.m │ │ │ ├── ObjCBeCloseToTest.m │ │ │ ├── ObjCBeEmptyTest.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 │ │ │ ├── ObjCHaveCount.m │ │ │ ├── ObjCMatchTest.m │ │ │ ├── ObjCRaiseExceptionTest.m │ │ │ ├── ObjCSatisfyAnyOfTest.m │ │ │ ├── ObjCSyncTest.m │ │ │ ├── ObjCUserDescriptionTest.m │ │ │ └── ObjcStringersTest.m │ │ ├── circle.yml │ │ ├── script │ │ └── release │ │ └── test │ ├── Gemfile │ ├── Gemfile.lock │ ├── LICENSE │ ├── Package.swift │ ├── Quick Templates │ ├── Quick Configuration Class.xctemplate │ │ ├── Objective-C │ │ │ ├── ___FILEBASENAME___.h │ │ │ └── ___FILEBASENAME___.m │ │ ├── Swift │ │ │ └── ___FILEBASENAME___.swift │ │ ├── TemplateIcon.icns │ │ └── TemplateInfo.plist │ └── Quick Spec Class.xctemplate │ │ ├── Objective-C │ │ └── ___FILEBASENAME___.m │ │ ├── Swift │ │ └── ___FILEBASENAME___.swift │ │ ├── TemplateIcon.icns │ │ └── TemplateInfo.plist │ ├── Quick.podspec │ ├── Quick.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── Quick-OSX.xcscheme │ │ ├── Quick-iOS.xcscheme │ │ └── Quick-tvOS.xcscheme │ ├── Quick.xcworkspace │ └── contents.xcworkspacedata │ ├── README.md │ ├── Rakefile │ ├── Sources │ ├── Quick │ │ ├── Callsite.swift │ │ ├── Configuration │ │ │ ├── Configuration.swift │ │ │ ├── QuickConfiguration.h │ │ │ ├── QuickConfiguration.m │ │ │ └── QuickConfiguration.swift │ │ ├── DSL │ │ │ ├── DSL.swift │ │ │ ├── QCKDSL.h │ │ │ ├── QCKDSL.m │ │ │ ├── World+DSL.h │ │ │ └── World+DSL.swift │ │ ├── ErrorUtility.swift │ │ ├── Example.swift │ │ ├── ExampleGroup.swift │ │ ├── ExampleMetadata.swift │ │ ├── Filter.swift │ │ ├── Hooks │ │ │ ├── Closures.swift │ │ │ ├── ExampleHooks.swift │ │ │ ├── HooksPhase.swift │ │ │ └── SuiteHooks.swift │ │ ├── Info.plist │ │ ├── NSBundle+CurrentTestBundle.swift │ │ ├── NSString+QCKSelectorName.h │ │ ├── NSString+QCKSelectorName.m │ │ ├── Quick.h │ │ ├── QuickMain.swift │ │ ├── QuickSelectedTestSuiteBuilder.swift │ │ ├── QuickSpec.h │ │ ├── QuickSpec.m │ │ ├── QuickSpec.swift │ │ ├── QuickTestSuite.swift │ │ ├── String+FileName.swift │ │ ├── World.h │ │ ├── World.swift │ │ └── XCTestSuite+QuickTestSuiteBuilder.m │ ├── QuickFocusedTests │ │ ├── FocusedTests+ObjC.m │ │ ├── FocusedTests.swift │ │ ├── Info.plist │ │ └── main.swift │ ├── QuickTestHelpers │ │ ├── SpecRunner.swift │ │ └── TestRun.swift │ └── QuickTests │ │ ├── Fixtures │ │ └── FunctionalTests_SharedExamplesTests_SharedExamples.swift │ │ ├── FunctionalTests │ │ ├── AfterEachTests+ObjC.m │ │ ├── AfterEachTests.swift │ │ ├── AfterSuiteTests+ObjC.m │ │ ├── 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 │ │ ├── ContextTests.swift │ │ ├── CrossReferencingSpecs.swift │ │ ├── DescribeTests.swift │ │ ├── FailureTests+ObjC.m │ │ ├── FailureUsingXCTAssertTests+ObjC.m │ │ ├── ItTests+ObjC.m │ │ ├── ItTests.swift │ │ ├── PendingTests+ObjC.m │ │ ├── PendingTests.swift │ │ ├── SharedExamples+BeforeEachTests+ObjC.m │ │ ├── SharedExamples+BeforeEachTests.swift │ │ ├── SharedExamplesTests+ObjC.m │ │ └── SharedExamplesTests.swift │ │ ├── Helpers │ │ ├── QCKSpecRunner.h │ │ ├── QCKSpecRunner.m │ │ ├── QuickSpec+QuickSpec_MethodList.h │ │ ├── QuickSpec+QuickSpec_MethodList.m │ │ ├── QuickTestsBridgingHeader.h │ │ ├── XCTestCaseProvider.swift │ │ ├── XCTestObservationCenter+QCKSuspendObservation.h │ │ └── XCTestObservationCenter+QCKSuspendObservation.m │ │ ├── Info.plist │ │ ├── QuickConfigurationTests.m │ │ └── main.swift │ ├── circle.yml │ └── script │ ├── release │ ├── travis-install-linux │ ├── travis-install-osx │ ├── travis-script-linux │ └── travis-script-osx ├── README.md ├── benchmark ├── in-memory-xctest ├── Info.plist └── PizzaControllerInMemoryTests.swift ├── testing-realm.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ ├── in-memory-xctest.xcscheme │ └── testing-realm-in-memory.xcscheme ├── testing-realm ├── AppDelegate.swift ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── Ingredient.swift ├── Pizza.swift ├── PizzaController.swift ├── TestConfiguration.swift └── ViewController.swift ├── testing-realmOnDiskTests ├── Info.plist ├── PizzaControllerOnDiskSpec.swift └── testing-realmTests │ ├── Info.plist │ ├── PizzaControllerInMemorySpec.swift │ └── PizzaControllerOnDiskSpec.swift └── testing-realmTests ├── Info.plist └── PizzaControllerInMemorySpec.swift /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj merge=union 2 | *.strings text diff 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/.gitignore -------------------------------------------------------------------------------- /Cartfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Cartfile -------------------------------------------------------------------------------- /Cartfile.private: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Cartfile.private -------------------------------------------------------------------------------- /Cartfile.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Cartfile.resolved -------------------------------------------------------------------------------- /Carthage/Build/iOS/12C19D20-91D9-3107-88E7-6921AE57BCCD.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/12C19D20-91D9-3107-88E7-6921AE57BCCD.bcsymbolmap -------------------------------------------------------------------------------- /Carthage/Build/iOS/3C35C5C7-AA9E-3F5B-9750-FB56DA071FF1.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/3C35C5C7-AA9E-3F5B-9750-FB56DA071FF1.bcsymbolmap -------------------------------------------------------------------------------- /Carthage/Build/iOS/3F76BE91-465C-360D-A975-89414D25ED4C.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/3F76BE91-465C-360D-A975-89414D25ED4C.bcsymbolmap -------------------------------------------------------------------------------- /Carthage/Build/iOS/F147E425-FC95-3259-B90E-4296E904F98C.bcsymbolmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/F147E425-FC95-3259-B90E-4296E904F98C.bcsymbolmap -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework.dSYM/Contents/Resources/DWARF/Nimble -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Headers/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Headers/DSL.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Headers/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Headers/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Headers/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Headers/NMBStringify.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Headers/Nimble-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Headers/Nimble-Swift.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Headers/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Headers/Nimble.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Modules/Nimble.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Carthage/Build/iOS/Nimble.framework/Nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Nimble.framework/Nimble -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework.dSYM/Contents/Resources/DWARF/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework.dSYM/Contents/Resources/DWARF/Quick -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Headers/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Headers/QCKDSL.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Headers/Quick-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Headers/Quick-Swift.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Headers/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Headers/Quick.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Headers/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Headers/QuickConfiguration.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Headers/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Headers/QuickSpec.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Modules/Quick.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Carthage/Build/iOS/Quick.framework/Quick: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Quick.framework/Quick -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework.dSYM/Contents/Resources/DWARF/Realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework.dSYM/Contents/Resources/DWARF/Realm -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/CHANGELOG.md -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMArray.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMCollection.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMConstants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMConstants.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMMigration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMMigration.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMObject.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectBase_Dynamic.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMObjectSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMObjectSchema.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMPlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMPlatform.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMProperty.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMRealm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMRealm.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMRealmConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMRealmConfiguration.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMRealm_Dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMRealm_Dynamic.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMResults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMResults.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/RLMSchema.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/RLMSchema.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Headers/Realm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Headers/Realm.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/LICENSE -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMAccessor.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMArray_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMArray_Private.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMListBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMListBase.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMMigration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMMigration_Private.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObjectSchema_Private.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObjectStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObjectStore.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObject_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMObject_Private.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMOptionalBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMOptionalBase.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMProperty_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMProperty_Private.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMRealmConfiguration_Private.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMRealmUtil.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMRealmUtil.hpp -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMRealm_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMRealm_Private.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMResults_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMResults_Private.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMSchema_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/PrivateHeaders/RLMSchema_Private.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/Realm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/Realm -------------------------------------------------------------------------------- /Carthage/Build/iOS/Realm.framework/strip-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/Realm.framework/strip-frameworks.sh -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework.dSYM/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework.dSYM/Contents/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework.dSYM/Contents/Resources/DWARF/RealmSwift -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework/Headers/RealmSwift-Swift.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework/Headers/RealmSwift-Swift.h -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework/Info.plist -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/arm64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/i386.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftdoc -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework/Modules/RealmSwift.swiftmodule/x86_64.swiftmodule -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework/Modules/module.modulemap -------------------------------------------------------------------------------- /Carthage/Build/iOS/RealmSwift.framework/RealmSwift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Build/iOS/RealmSwift.framework/RealmSwift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.ruby-version: -------------------------------------------------------------------------------- 1 | system 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-02-25-a 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Carthage/Build: -------------------------------------------------------------------------------- 1 | ../../../../Carthage/Build -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem 'cocoapods' 5 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/LICENSE.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-OSX.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-iOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-tvOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Expression.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Nimble.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/ObjCExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/ObjCExpectation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Utils/Poll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Utils/Poll.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Wrappers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Wrappers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Wrappers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Wrappers/MatcherFunc.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/Wrappers/ObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/Wrappers/ObjCMatcher.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/objc/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/objc/DSL.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/objc/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/objc/DSL.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/objc/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/objc/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Nimble/objc/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Nimble/objc/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/AsynchronousTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/AsynchronousTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Helpers/ObjectWithLazyProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Helpers/ObjectWithLazyProperty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Helpers/utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Helpers/utils.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/AllPassTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/AllPassTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeAKindOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeAKindOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeAnInstanceOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeAnInstanceOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeCloseToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeCloseToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeEmptyTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeEmptyTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeGreaterThanOrEqualToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeGreaterThanOrEqualToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeGreaterThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeGreaterThanTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeIdenticalToObjectTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeIdenticalToObjectTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeIdenticalToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeIdenticalToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeLessThanOrEqualToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeLessThanOrEqualToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeLessThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeLessThanTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeLogicalTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeLogicalTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeNilTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeNilTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeginWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/BeginWithTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/ContainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/ContainTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/EndWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/EndWithTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/EqualTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/EqualTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/MatchTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/MatchTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/Matchers/RaisesExceptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/Matchers/RaisesExceptionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/SynchronousTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/SynchronousTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/Nimble-OSXTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/Nimble-OSXTests-Bridging-Header.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/NimbleSpecHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/NimbleSpecHelper.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/NimbleTests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/NimbleTests-Bridging-Header.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCAllPassTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCAllPassTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCAsyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCAsyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeAnInstanceOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeAnInstanceOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeCloseToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeCloseToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeEmptyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeEmptyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeFalseTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeFalseTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeFalsyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeFalsyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeGreaterThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeGreaterThanOrEqualToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeGreaterThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeGreaterThanTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeIdenticalToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeIdenticalToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeKindOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeKindOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeLessThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeLessThanOrEqualToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeLessThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeLessThanTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeNilTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeNilTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeTrueTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeTrueTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeTruthyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeTruthyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeginWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCBeginWithTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCContainTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCContainTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCEndWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCEndWithTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCEqualTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCEqualTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCMatchTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCMatchTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCRaiseExceptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/NimbleTests/objc/ObjCRaiseExceptionTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NonObjectiveC/ExceptionCapture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/NonObjectiveC/ExceptionCapture.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/CurrentTestCaseTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/CurrentTestCaseTracker.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExpectation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBObjCMatcher.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/XCTestObservationCenter+Register.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Adapters/ObjectiveC/XCTestObservationCenter+Register.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Expression.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeVoid.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/HaveCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/HaveCount.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatchError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/PostNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/PostNotification.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/ThrowError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Matchers/ThrowError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Nimble.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Async.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Errors.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Sources/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/AsynchronousTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/AsynchronousTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Helpers/ObjectWithLazyProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Helpers/ObjectWithLazyProperty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Helpers/XCTestCaseProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Helpers/XCTestCaseProvider.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Helpers/utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Helpers/utils.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/AllPassTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/AllPassTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeAKindOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeAKindOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeAnInstanceOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeAnInstanceOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeCloseToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeCloseToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeEmptyTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeEmptyTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeGreaterThanOrEqualToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeGreaterThanOrEqualToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeGreaterThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeGreaterThanTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeIdenticalToObjectTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeIdenticalToObjectTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeIdenticalToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeIdenticalToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeLessThanOrEqualToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeLessThanOrEqualToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeLessThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeLessThanTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeLogicalTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeLogicalTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeNilTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeNilTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeVoidTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeVoidTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeginWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/BeginWithTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/ContainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/ContainTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/EndWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/EndWithTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/EqualTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/EqualTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/HaveCountTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/HaveCountTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/MatchErrorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/MatchErrorTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/MatchTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/MatchTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/PostNotificationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/PostNotificationTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/RaisesExceptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/RaisesExceptionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/SatisfyAnyOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/SatisfyAnyOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/ThrowErrorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/Matchers/ThrowErrorTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/SynchronousTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/SynchronousTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/UserDescriptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/UserDescriptionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/NimbleSpecHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/NimbleSpecHelper.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCAllPassTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCAllPassTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCAsyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCAsyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeAnInstanceOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeAnInstanceOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeCloseToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeCloseToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeEmptyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeEmptyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeFalseTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeFalseTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeFalsyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeFalsyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeGreaterThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeGreaterThanOrEqualToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeGreaterThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeGreaterThanTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeIdenticalToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeIdenticalToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeKindOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeKindOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeLessThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeLessThanOrEqualToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeLessThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeLessThanTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeNilTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeNilTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeTrueTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeTrueTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeTruthyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeTruthyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeginWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCBeginWithTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCContainTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCContainTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCEndWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCEndWithTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCEqualTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCEqualTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCHaveCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCHaveCount.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCMatchTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCMatchTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCRaiseExceptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCRaiseExceptionTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCSatisfyAnyOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCSatisfyAnyOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCSyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCSyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCUserDescriptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjCUserDescriptionTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjcStringersTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/Tests/Nimble/objc/ObjcStringersTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/circle.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/script/release -------------------------------------------------------------------------------- /Carthage/Checkouts/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Nimble/test -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/.gitmodules -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.ruby-version: -------------------------------------------------------------------------------- 1 | system 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-02-25-a 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/ArrangeActAssert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/ArrangeActAssert.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/BehavioralTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/BehavioralTesting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/ConfiguringQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/ConfiguringQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/InstallingFileTemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/InstallingFileTemplates.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/InstallingQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/InstallingQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/MoreResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/MoreResources.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/NimbleAssertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/NimbleAssertions.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/QuickExamplesAndGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/QuickExamplesAndGroups.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/QuickInObjectiveC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/QuickInObjectiveC.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/SettingUpYourXcodeProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/SettingUpYourXcodeProject.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/SharedExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/SharedExamples.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/en-us/TestingApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/en-us/TestingApps.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/ArrangeActAssert.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/ArrangeActAssert.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/BehavioralTesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/BehavioralTesting.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/ConfiguringQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/ConfiguringQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/InstallingFileTemplates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/InstallingFileTemplates.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/InstallingQuick.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/InstallingQuick.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/MoreResources.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/MoreResources.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/NimbleAssertions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/NimbleAssertions.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/QuickExamplesAndGroups.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/QuickExamplesAndGroups.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/QuickInObjectiveC.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/QuickInObjectiveC.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/SettingUpYourXcodeProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/SettingUpYourXcodeProject.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/SharedExamples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/SharedExamples.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/ja/TestingApps.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/ja/TestingApps.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Documentation/zh-cn/SettingUpYourXcodeProject.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Documentation/zh-cn/SettingUpYourXcodeProject.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/.gitignore -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.ruby-version: -------------------------------------------------------------------------------- 1 | system 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.swift-version: -------------------------------------------------------------------------------- 1 | DEVELOPMENT-SNAPSHOT-2016-02-25-a 2 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/.travis.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/CONTRIBUTING.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Gemfile: -------------------------------------------------------------------------------- 1 | # A sample Gemfile 2 | source "https://rubygems.org" 3 | 4 | gem 'cocoapods' 5 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/LICENSE.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-OSX.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-iOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Nimble.xcodeproj/xcshareddata/xcschemes/Nimble-tvOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/AssertionDispatcher.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NimbleEnvironment.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NonObjectiveC/ExceptionCapture.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/NonObjectiveC/ExceptionCapture.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/CurrentTestCaseTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/CurrentTestCaseTracker.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/DSL.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExpectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBExpectation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBObjCMatcher.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/NMBStringify.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/XCTestObservationCenter+Register.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Adapters/ObjectiveC/XCTestObservationCenter+Register.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Expression.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeVoid.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeVoid.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/HaveCount.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/HaveCount.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/MatchError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/MatchError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/MatcherFunc.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/PostNotification.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/PostNotification.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/SatisfyAnyOf.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/ThrowError.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Matchers/ThrowError.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Nimble.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Async.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Async.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Errors.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Errors.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Sources/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/LinuxMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/LinuxMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/AsynchronousTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/AsynchronousTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Helpers/ObjectWithLazyProperty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Helpers/ObjectWithLazyProperty.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Helpers/XCTestCaseProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Helpers/XCTestCaseProvider.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Helpers/utils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Helpers/utils.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/AllPassTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/AllPassTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeAKindOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeAKindOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeAnInstanceOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeAnInstanceOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeCloseToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeCloseToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeEmptyTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeEmptyTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeGreaterThanOrEqualToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeGreaterThanOrEqualToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeGreaterThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeGreaterThanTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeIdenticalToObjectTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeIdenticalToObjectTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeIdenticalToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeIdenticalToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeLessThanOrEqualToTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeLessThanOrEqualToTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeLessThanTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeLessThanTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeLogicalTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeLogicalTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeNilTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeNilTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeVoidTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeVoidTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeginWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/BeginWithTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/ContainTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/ContainTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/EndWithTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/EndWithTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/EqualTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/EqualTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/HaveCountTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/HaveCountTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/MatchErrorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/MatchErrorTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/MatchTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/MatchTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/PostNotificationTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/PostNotificationTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/RaisesExceptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/RaisesExceptionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/SatisfyAnyOfTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/SatisfyAnyOfTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/ThrowErrorTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/Matchers/ThrowErrorTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/SynchronousTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/SynchronousTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/UserDescriptionTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/UserDescriptionTest.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/NimbleSpecHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/NimbleSpecHelper.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCAllPassTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCAllPassTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCAsyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCAsyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeAnInstanceOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeAnInstanceOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeCloseToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeCloseToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeEmptyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeEmptyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeFalseTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeFalseTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeFalsyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeFalsyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeGreaterThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeGreaterThanOrEqualToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeGreaterThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeGreaterThanTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeIdenticalToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeIdenticalToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeKindOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeKindOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeLessThanOrEqualToTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeLessThanOrEqualToTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeLessThanTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeLessThanTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeNilTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeNilTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeTrueTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeTrueTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeTruthyTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeTruthyTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeginWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCBeginWithTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCContainTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCContainTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCEndWithTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCEndWithTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCEqualTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCEqualTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCHaveCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCHaveCount.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCMatchTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCMatchTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCRaiseExceptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCRaiseExceptionTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCSatisfyAnyOfTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCSatisfyAnyOfTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCSyncTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCSyncTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCUserDescriptionTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjCUserDescriptionTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjcStringersTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/Tests/Nimble/objc/ObjcStringersTest.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/circle.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/script/release -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Externals/Nimble/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Externals/Nimble/test -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Gemfile: -------------------------------------------------------------------------------- 1 | source "https://rubygems.org" 2 | 3 | gem 'cocoapods', '1.0' 4 | -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Gemfile.lock -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/LICENSE -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Package.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/Objective-C/___FILEBASENAME___.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/Objective-C/___FILEBASENAME___.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/Objective-C/___FILEBASENAME___.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/Objective-C/___FILEBASENAME___.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/Swift/___FILEBASENAME___.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/Swift/___FILEBASENAME___.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Configuration Class.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/Objective-C/___FILEBASENAME___.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/Objective-C/___FILEBASENAME___.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/Swift/___FILEBASENAME___.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/Swift/___FILEBASENAME___.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/TemplateIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/TemplateIcon.icns -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/TemplateInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick Templates/Quick Spec Class.xctemplate/TemplateInfo.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick.podspec -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-OSX.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-iOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick.xcodeproj/xcshareddata/xcschemes/Quick-tvOS.xcscheme -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Quick.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Quick.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/README.md -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Rakefile -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Callsite.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Configuration/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Configuration/QuickConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Configuration/QuickConfiguration.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Configuration/QuickConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Configuration/QuickConfiguration.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/DSL/QCKDSL.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/DSL/World+DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/DSL/World+DSL.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/ErrorUtility.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/ErrorUtility.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Example.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Filter.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Hooks/ExampleHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Hooks/ExampleHooks.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Hooks/HooksPhase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Hooks/HooksPhase.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/NSBundle+CurrentTestBundle.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/NSString+QCKSelectorName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/NSString+QCKSelectorName.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/NSString+QCKSelectorName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/NSString+QCKSelectorName.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/Quick.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickMain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickMain.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickSelectedTestSuiteBuilder.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickSpec.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/QuickTestSuite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/QuickTestSuite.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/String+FileName.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/String+FileName.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/World.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/World.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/World.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/Quick/XCTestSuite+QuickTestSuiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/Quick/XCTestSuite+QuickTestSuiteBuilder.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickFocusedTests/FocusedTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickFocusedTests/FocusedTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickFocusedTests/FocusedTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickFocusedTests/FocusedTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickFocusedTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickFocusedTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickFocusedTests/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickFocusedTests/main.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTestHelpers/SpecRunner.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTestHelpers/SpecRunner.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTestHelpers/TestRun.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTestHelpers/TestRun.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Fixtures/FunctionalTests_SharedExamplesTests_SharedExamples.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Fixtures/FunctionalTests_SharedExamplesTests_SharedExamples.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/AfterEachTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/AfterEachTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/AfterEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/AfterEachTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/AfterSuiteTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/AfterSuiteTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/AfterSuiteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/AfterSuiteTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/BeforeEachTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/BeforeEachTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/BeforeEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/BeforeEachTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/BeforeSuiteTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/BeforeSuiteTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/BeforeSuiteTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/BeforeSuiteTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEach.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEach.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/Configuration/AfterEach/Configuration+AfterEachTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEach.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEach.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/Configuration/BeforeEach/Configuration+BeforeEachTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/ContextTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/ContextTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/CrossReferencingSpecs.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/CrossReferencingSpecs.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/DescribeTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/DescribeTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/FailureTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/FailureTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/FailureUsingXCTAssertTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/FailureUsingXCTAssertTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/ItTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/ItTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/ItTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/ItTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/PendingTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/PendingTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/PendingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/PendingTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/SharedExamples+BeforeEachTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/SharedExamples+BeforeEachTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/SharedExamples+BeforeEachTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/SharedExamples+BeforeEachTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/SharedExamplesTests+ObjC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/SharedExamplesTests+ObjC.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/SharedExamplesTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/FunctionalTests/SharedExamplesTests.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QCKSpecRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QCKSpecRunner.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QCKSpecRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QCKSpecRunner.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QuickSpec+QuickSpec_MethodList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QuickSpec+QuickSpec_MethodList.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QuickSpec+QuickSpec_MethodList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QuickSpec+QuickSpec_MethodList.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QuickTestsBridgingHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/QuickTestsBridgingHeader.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/XCTestCaseProvider.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/XCTestCaseProvider.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/XCTestObservationCenter+QCKSuspendObservation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/XCTestObservationCenter+QCKSuspendObservation.h -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/XCTestObservationCenter+QCKSuspendObservation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Helpers/XCTestObservationCenter+QCKSuspendObservation.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/Info.plist -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/QuickConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/QuickConfigurationTests.m -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/Sources/QuickTests/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/Sources/QuickTests/main.swift -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/circle.yml -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/release: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/script/release -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/travis-install-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/script/travis-install-linux -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/travis-install-osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/script/travis-install-osx -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/travis-script-linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/script/travis-script-linux -------------------------------------------------------------------------------- /Carthage/Checkouts/Quick/script/travis-script-osx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/Carthage/Checkouts/Quick/script/travis-script-osx -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/README.md -------------------------------------------------------------------------------- /benchmark: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/benchmark -------------------------------------------------------------------------------- /in-memory-xctest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/in-memory-xctest/Info.plist -------------------------------------------------------------------------------- /in-memory-xctest/PizzaControllerInMemoryTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/in-memory-xctest/PizzaControllerInMemoryTests.swift -------------------------------------------------------------------------------- /testing-realm.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /testing-realm.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /testing-realm.xcodeproj/xcshareddata/xcschemes/in-memory-xctest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm.xcodeproj/xcshareddata/xcschemes/in-memory-xctest.xcscheme -------------------------------------------------------------------------------- /testing-realm.xcodeproj/xcshareddata/xcschemes/testing-realm-in-memory.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm.xcodeproj/xcshareddata/xcschemes/testing-realm-in-memory.xcscheme -------------------------------------------------------------------------------- /testing-realm/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm/AppDelegate.swift -------------------------------------------------------------------------------- /testing-realm/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /testing-realm/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /testing-realm/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /testing-realm/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm/Info.plist -------------------------------------------------------------------------------- /testing-realm/Ingredient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm/Ingredient.swift -------------------------------------------------------------------------------- /testing-realm/Pizza.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm/Pizza.swift -------------------------------------------------------------------------------- /testing-realm/PizzaController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm/PizzaController.swift -------------------------------------------------------------------------------- /testing-realm/TestConfiguration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm/TestConfiguration.swift -------------------------------------------------------------------------------- /testing-realm/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realm/ViewController.swift -------------------------------------------------------------------------------- /testing-realmOnDiskTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realmOnDiskTests/Info.plist -------------------------------------------------------------------------------- /testing-realmOnDiskTests/PizzaControllerOnDiskSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realmOnDiskTests/PizzaControllerOnDiskSpec.swift -------------------------------------------------------------------------------- /testing-realmOnDiskTests/testing-realmTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realmOnDiskTests/testing-realmTests/Info.plist -------------------------------------------------------------------------------- /testing-realmOnDiskTests/testing-realmTests/PizzaControllerInMemorySpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realmOnDiskTests/testing-realmTests/PizzaControllerInMemorySpec.swift -------------------------------------------------------------------------------- /testing-realmOnDiskTests/testing-realmTests/PizzaControllerOnDiskSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realmOnDiskTests/testing-realmTests/PizzaControllerOnDiskSpec.swift -------------------------------------------------------------------------------- /testing-realmTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realmTests/Info.plist -------------------------------------------------------------------------------- /testing-realmTests/PizzaControllerInMemorySpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mokacoding/unit-test-in-memory-realm-example/HEAD/testing-realmTests/PizzaControllerInMemorySpec.swift --------------------------------------------------------------------------------