├── .gitignore ├── Podfile ├── Podfile.lock ├── Pods ├── Fox │ ├── Fox │ │ ├── Private │ │ │ ├── Data │ │ │ │ ├── FOXArray.h │ │ │ │ ├── FOXArray.m │ │ │ │ ├── FOXConcreteSequence.h │ │ │ │ ├── FOXConcreteSequence.m │ │ │ │ ├── FOXLazySequence.h │ │ │ │ ├── FOXLazySequence.m │ │ │ │ ├── FOXSequenceEnumerator.h │ │ │ │ └── FOXSequenceEnumerator.m │ │ │ ├── FOXLimits.h │ │ │ ├── FOXLimits.mm │ │ │ └── Generators │ │ │ │ ├── FOXArrayGenerator.h │ │ │ │ ├── FOXArrayGenerator.m │ │ │ │ ├── FOXBindGenerator.h │ │ │ │ ├── FOXBindGenerator.m │ │ │ │ ├── FOXBlockGenerator.h │ │ │ │ ├── FOXBlockGenerator.m │ │ │ │ ├── FOXChooseGenerator.h │ │ │ │ ├── FOXChooseGenerator.m │ │ │ │ ├── FOXMapGenerator.h │ │ │ │ ├── FOXMapGenerator.m │ │ │ │ ├── FOXNamedGenerator.h │ │ │ │ ├── FOXNamedGenerator.m │ │ │ │ ├── FOXPureGenerator.h │ │ │ │ ├── FOXPureGenerator.m │ │ │ │ ├── FOXSequenceGenerator.h │ │ │ │ ├── FOXSequenceGenerator.m │ │ │ │ ├── FOXSizedGenerator.h │ │ │ │ ├── FOXSizedGenerator.m │ │ │ │ ├── FOXStringGenerator.h │ │ │ │ ├── FOXStringGenerator.m │ │ │ │ ├── FOXSuchThatGenerator.h │ │ │ │ ├── FOXSuchThatGenerator.m │ │ │ │ ├── FOXTupleGenerator.h │ │ │ │ └── FOXTupleGenerator.m │ │ └── Public │ │ │ ├── DSL.swift │ │ │ ├── Data │ │ │ ├── FOXCommand.h │ │ │ ├── FOXCommand.m │ │ │ ├── FOXExecutedCommand.h │ │ │ ├── FOXExecutedCommand.m │ │ │ ├── FOXPropertyResult.h │ │ │ ├── FOXPropertyResult.m │ │ │ ├── FOXRoseTree.h │ │ │ ├── FOXRoseTree.m │ │ │ ├── FOXRunnerResult.h │ │ │ ├── FOXRunnerResult.m │ │ │ ├── FOXSequence.h │ │ │ ├── FOXSequence.m │ │ │ ├── FOXTransition.h │ │ │ └── FOXTransition.m │ │ │ ├── FOXDSL.h │ │ │ ├── FOXDSL.m │ │ │ ├── FOXDebugging.h │ │ │ ├── FOXDebugging.m │ │ │ ├── FOXEnvironment.h │ │ │ ├── FOXEnvironment.m │ │ │ ├── FOXMacros.h │ │ │ ├── FOXRunner.h │ │ │ ├── FOXRunner.m │ │ │ ├── Fox.h │ │ │ ├── Generators │ │ │ ├── FOXArrayGenerators.h │ │ │ ├── FOXArrayGenerators.m │ │ │ ├── FOXCoreGenerators.h │ │ │ ├── FOXCoreGenerators.m │ │ │ ├── FOXDictionaryGenerators.h │ │ │ ├── FOXDictionaryGenerators.m │ │ │ ├── FOXFiniteStateMachine.h │ │ │ ├── FOXFiniteStateMachine.m │ │ │ ├── FOXGenerator.h │ │ │ ├── FOXGenericGenerators.h │ │ │ ├── FOXGenericGenerators.m │ │ │ ├── FOXNumericGenerators.h │ │ │ ├── FOXNumericGenerators.m │ │ │ ├── FOXPropertyGenerators.h │ │ │ ├── FOXPropertyGenerators.m │ │ │ ├── FOXSetGenerators.h │ │ │ ├── FOXSetGenerators.m │ │ │ ├── FOXStateMachine.h │ │ │ ├── FOXStateMachineGenerators.h │ │ │ ├── FOXStateMachineGenerators.m │ │ │ ├── FOXStateTransition.h │ │ │ ├── FOXStringGenerators.h │ │ │ ├── FOXStringGenerators.m │ │ │ └── SwiftGenerators.swift │ │ │ ├── Random │ │ │ ├── FOXConstantRandom.h │ │ │ ├── FOXConstantRandom.m │ │ │ ├── FOXDeterministicRandom.h │ │ │ ├── FOXDeterministicRandom.mm │ │ │ └── FOXRandom.h │ │ │ └── Reporters │ │ │ ├── FOXDebugReporter.h │ │ │ ├── FOXDebugReporter.m │ │ │ ├── FOXReporter.h │ │ │ ├── FOXStandardReporter.h │ │ │ └── FOXStandardReporter.m │ ├── LICENSE.md │ └── README.md ├── Headers │ ├── Private │ │ ├── Fox │ │ │ ├── FOXArray.h │ │ │ ├── FOXArrayGenerator.h │ │ │ ├── FOXArrayGenerators.h │ │ │ ├── FOXBindGenerator.h │ │ │ ├── FOXBlockGenerator.h │ │ │ ├── FOXChooseGenerator.h │ │ │ ├── FOXCommand.h │ │ │ ├── FOXConcreteSequence.h │ │ │ ├── FOXConstantRandom.h │ │ │ ├── FOXCoreGenerators.h │ │ │ ├── FOXDSL.h │ │ │ ├── FOXDebugReporter.h │ │ │ ├── FOXDebugging.h │ │ │ ├── FOXDeterministicRandom.h │ │ │ ├── FOXDictionaryGenerators.h │ │ │ ├── FOXEnvironment.h │ │ │ ├── FOXExecutedCommand.h │ │ │ ├── FOXFiniteStateMachine.h │ │ │ ├── FOXGenerator.h │ │ │ ├── FOXGenericGenerators.h │ │ │ ├── FOXLazySequence.h │ │ │ ├── FOXLimits.h │ │ │ ├── FOXMacros.h │ │ │ ├── FOXMapGenerator.h │ │ │ ├── FOXNamedGenerator.h │ │ │ ├── FOXNumericGenerators.h │ │ │ ├── FOXPropertyGenerators.h │ │ │ ├── FOXPropertyResult.h │ │ │ ├── FOXPureGenerator.h │ │ │ ├── FOXRandom.h │ │ │ ├── FOXReporter.h │ │ │ ├── FOXRoseTree.h │ │ │ ├── FOXRunner.h │ │ │ ├── FOXRunnerResult.h │ │ │ ├── FOXSequence.h │ │ │ ├── FOXSequenceEnumerator.h │ │ │ ├── FOXSequenceGenerator.h │ │ │ ├── FOXSetGenerators.h │ │ │ ├── FOXSizedGenerator.h │ │ │ ├── FOXStandardReporter.h │ │ │ ├── FOXStateMachine.h │ │ │ ├── FOXStateMachineGenerators.h │ │ │ ├── FOXStateTransition.h │ │ │ ├── FOXStringGenerator.h │ │ │ ├── FOXStringGenerators.h │ │ │ ├── FOXSuchThatGenerator.h │ │ │ ├── FOXTransition.h │ │ │ ├── FOXTupleGenerator.h │ │ │ └── Fox.h │ │ ├── Nimble │ │ │ ├── DSL.h │ │ │ ├── NMBExceptionCapture.h │ │ │ └── Nimble.h │ │ └── Quick │ │ │ ├── NSString+QCKSelectorName.h │ │ │ ├── QCKDSL.h │ │ │ ├── Quick.h │ │ │ ├── QuickConfiguration.h │ │ │ └── QuickSpec.h │ └── Public │ │ ├── Fox │ │ ├── FOXArrayGenerators.h │ │ ├── FOXCommand.h │ │ ├── FOXConstantRandom.h │ │ ├── FOXCoreGenerators.h │ │ ├── FOXDSL.h │ │ ├── FOXDebugReporter.h │ │ ├── FOXDebugging.h │ │ ├── FOXDeterministicRandom.h │ │ ├── FOXDictionaryGenerators.h │ │ ├── FOXEnvironment.h │ │ ├── FOXExecutedCommand.h │ │ ├── FOXFiniteStateMachine.h │ │ ├── FOXGenerator.h │ │ ├── FOXGenericGenerators.h │ │ ├── FOXMacros.h │ │ ├── FOXNumericGenerators.h │ │ ├── FOXPropertyGenerators.h │ │ ├── FOXPropertyResult.h │ │ ├── FOXRandom.h │ │ ├── FOXReporter.h │ │ ├── FOXRoseTree.h │ │ ├── FOXRunner.h │ │ ├── FOXRunnerResult.h │ │ ├── FOXSequence.h │ │ ├── FOXSetGenerators.h │ │ ├── FOXStandardReporter.h │ │ ├── FOXStateMachine.h │ │ ├── FOXStateMachineGenerators.h │ │ ├── FOXStateTransition.h │ │ ├── FOXStringGenerators.h │ │ ├── FOXTransition.h │ │ └── Fox.h │ │ ├── Nimble │ │ ├── DSL.h │ │ ├── NMBExceptionCapture.h │ │ └── Nimble.h │ │ └── Quick │ │ ├── NSString+QCKSelectorName.h │ │ ├── QCKDSL.h │ │ ├── Quick.h │ │ ├── QuickConfiguration.h │ │ └── QuickSpec.h ├── Local Podspecs │ └── Fox.podspec.json ├── Manifest.lock ├── Nimble │ ├── LICENSE.md │ ├── Nimble │ │ ├── Adapters │ │ │ ├── AdapterProtocols.swift │ │ │ ├── AssertionRecorder.swift │ │ │ └── NimbleXCTestHandler.swift │ │ ├── DSL+Wait.swift │ │ ├── DSL.swift │ │ ├── Expectation.swift │ │ ├── Expression.swift │ │ ├── FailureMessage.swift │ │ ├── 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 │ │ ├── Utils │ │ │ ├── Functional.swift │ │ │ ├── Poll.swift │ │ │ ├── SourceLocation.swift │ │ │ └── Stringers.swift │ │ ├── Wrappers │ │ │ ├── AsyncMatcherWrapper.swift │ │ │ ├── BasicMatcherWrapper.swift │ │ │ ├── FullMatcherWrapper.swift │ │ │ ├── MatcherFunc.swift │ │ │ ├── NonNilMatcherWrapper.swift │ │ │ └── ObjCMatcher.swift │ │ └── objc │ │ │ ├── DSL.h │ │ │ ├── DSL.m │ │ │ ├── NMBExceptionCapture.h │ │ │ └── NMBExceptionCapture.m │ └── README.md ├── Pods.xcodeproj │ └── project.pbxproj ├── Quick │ ├── LICENSE │ ├── Quick │ │ ├── Callsite.swift │ │ ├── Configuration │ │ │ ├── Configuration.swift │ │ │ ├── QuickConfiguration.h │ │ │ └── QuickConfiguration.m │ │ ├── DSL │ │ │ ├── DSL.swift │ │ │ ├── QCKDSL.h │ │ │ ├── QCKDSL.m │ │ │ └── World+DSL.swift │ │ ├── Example.swift │ │ ├── ExampleGroup.swift │ │ ├── ExampleMetadata.swift │ │ ├── Failure.swift │ │ ├── Filter.swift │ │ ├── Hooks │ │ │ ├── Closures.swift │ │ │ ├── ExampleHooks.swift │ │ │ └── SuiteHooks.swift │ │ ├── NSString+QCKSelectorName.h │ │ ├── NSString+QCKSelectorName.m │ │ ├── Quick.h │ │ ├── QuickSpec.h │ │ ├── QuickSpec.m │ │ └── World.swift │ └── README.md └── Target Support Files │ ├── Pods-RandomAppTests-Fox │ ├── Info.plist │ ├── Pods-RandomAppTests-Fox-Private.xcconfig │ ├── Pods-RandomAppTests-Fox-dummy.m │ ├── Pods-RandomAppTests-Fox-prefix.pch │ ├── Pods-RandomAppTests-Fox-umbrella.h │ ├── Pods-RandomAppTests-Fox.modulemap │ └── Pods-RandomAppTests-Fox.xcconfig │ ├── Pods-RandomAppTests-Nimble │ ├── Info.plist │ ├── Pods-RandomAppTests-Nimble-Private.xcconfig │ ├── Pods-RandomAppTests-Nimble-dummy.m │ ├── Pods-RandomAppTests-Nimble-prefix.pch │ ├── Pods-RandomAppTests-Nimble-umbrella.h │ ├── Pods-RandomAppTests-Nimble.modulemap │ └── Pods-RandomAppTests-Nimble.xcconfig │ ├── Pods-RandomAppTests-Quick │ ├── Info.plist │ ├── Pods-RandomAppTests-Quick-Private.xcconfig │ ├── Pods-RandomAppTests-Quick-dummy.m │ ├── Pods-RandomAppTests-Quick-prefix.pch │ ├── Pods-RandomAppTests-Quick-umbrella.h │ ├── Pods-RandomAppTests-Quick.modulemap │ └── Pods-RandomAppTests-Quick.xcconfig │ └── Pods-RandomAppTests │ ├── Info.plist │ ├── Pods-RandomAppTests-acknowledgements.markdown │ ├── Pods-RandomAppTests-acknowledgements.plist │ ├── Pods-RandomAppTests-dummy.m │ ├── Pods-RandomAppTests-environment.h │ ├── Pods-RandomAppTests-frameworks.sh │ ├── Pods-RandomAppTests-resources.sh │ ├── Pods-RandomAppTests-umbrella.h │ ├── Pods-RandomAppTests.debug.xcconfig │ ├── Pods-RandomAppTests.modulemap │ └── Pods-RandomAppTests.release.xcconfig ├── README.md ├── RandomApp.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata ├── RandomApp.xcworkspace ├── QuickRandom.xcworkspace │ └── contents.xcworkspacedata └── contents.xcworkspacedata ├── RandomApp ├── AppDelegate.swift ├── Base.lproj │ └── LaunchScreen.xib ├── DetailViewController.swift ├── DetailViewController.xib ├── HTTPClient.swift ├── Images.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Info.plist ├── ListViewController.swift ├── NetworkActivityController.swift ├── RandomClient.swift └── secrets.swift └── RandomAppTests ├── DetailViewControllerSpec.swift ├── Fakes ├── FakeHTTPClient.swift └── FakeResponses.swift ├── Generative Testing ├── RollingGenerativeTest.swift └── SortingGenerativeTest.swift ├── Info.plist ├── ListViewControllerSpec.swift ├── RandomClientSpec.swift ├── SortingTests.swift └── Support ├── Matchers ├── hasJSONBodyMatcher.swift └── urlEqualMatcher.swift ├── PerformSelector.h ├── PerformSelector.m ├── RandomAppTests-Bridging-Header.h └── UISupport.swift /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/.gitignore -------------------------------------------------------------------------------- /Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Podfile -------------------------------------------------------------------------------- /Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Podfile.lock -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Data/FOXArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Data/FOXArray.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Data/FOXArray.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Data/FOXArray.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Data/FOXConcreteSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Data/FOXConcreteSequence.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Data/FOXConcreteSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Data/FOXConcreteSequence.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Data/FOXLazySequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Data/FOXLazySequence.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Data/FOXLazySequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Data/FOXLazySequence.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Data/FOXSequenceEnumerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Data/FOXSequenceEnumerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Data/FOXSequenceEnumerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Data/FOXSequenceEnumerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/FOXLimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/FOXLimits.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/FOXLimits.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/FOXLimits.mm -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXArrayGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXArrayGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXArrayGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXArrayGenerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXBindGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXBindGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXBindGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXBindGenerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXBlockGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXBlockGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXBlockGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXBlockGenerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXChooseGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXChooseGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXChooseGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXChooseGenerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXMapGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXMapGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXMapGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXMapGenerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXNamedGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXNamedGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXNamedGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXNamedGenerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXPureGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXPureGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXPureGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXPureGenerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXSequenceGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXSequenceGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXSequenceGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXSequenceGenerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXSizedGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXSizedGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXSizedGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXSizedGenerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXStringGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXStringGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXStringGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXStringGenerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXSuchThatGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXSuchThatGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXSuchThatGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXSuchThatGenerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXTupleGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXTupleGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Private/Generators/FOXTupleGenerator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Private/Generators/FOXTupleGenerator.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/DSL.swift -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXCommand.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXCommand.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXExecutedCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXExecutedCommand.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXExecutedCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXExecutedCommand.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXPropertyResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXPropertyResult.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXPropertyResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXPropertyResult.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXRoseTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXRoseTree.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXRoseTree.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXRoseTree.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXRunnerResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXRunnerResult.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXRunnerResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXRunnerResult.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXSequence.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXSequence.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXTransition.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Data/FOXTransition.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Data/FOXTransition.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/FOXDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/FOXDSL.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/FOXDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/FOXDSL.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/FOXDebugging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/FOXDebugging.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/FOXDebugging.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/FOXDebugging.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/FOXEnvironment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/FOXEnvironment.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/FOXEnvironment.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/FOXEnvironment.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/FOXMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/FOXMacros.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/FOXRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/FOXRunner.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/FOXRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/FOXRunner.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Fox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Fox.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXArrayGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXArrayGenerators.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXArrayGenerators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXArrayGenerators.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXCoreGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXCoreGenerators.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXCoreGenerators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXCoreGenerators.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXDictionaryGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXDictionaryGenerators.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXDictionaryGenerators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXDictionaryGenerators.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXFiniteStateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXFiniteStateMachine.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXFiniteStateMachine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXFiniteStateMachine.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXGenerator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXGenerator.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXGenericGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXGenericGenerators.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXGenericGenerators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXGenericGenerators.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXNumericGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXNumericGenerators.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXNumericGenerators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXNumericGenerators.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXPropertyGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXPropertyGenerators.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXPropertyGenerators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXPropertyGenerators.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXSetGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXSetGenerators.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXSetGenerators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXSetGenerators.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXStateMachine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXStateMachine.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXStateMachineGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXStateMachineGenerators.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXStateMachineGenerators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXStateMachineGenerators.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXStateTransition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXStateTransition.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXStringGenerators.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXStringGenerators.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/FOXStringGenerators.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/FOXStringGenerators.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Generators/SwiftGenerators.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Generators/SwiftGenerators.swift -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Random/FOXConstantRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Random/FOXConstantRandom.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Random/FOXConstantRandom.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Random/FOXConstantRandom.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Random/FOXDeterministicRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Random/FOXDeterministicRandom.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Random/FOXDeterministicRandom.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Random/FOXDeterministicRandom.mm -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Random/FOXRandom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Random/FOXRandom.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Reporters/FOXDebugReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Reporters/FOXDebugReporter.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Reporters/FOXDebugReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Reporters/FOXDebugReporter.m -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Reporters/FOXReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Reporters/FOXReporter.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Reporters/FOXStandardReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Reporters/FOXStandardReporter.h -------------------------------------------------------------------------------- /Pods/Fox/Fox/Public/Reporters/FOXStandardReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/Fox/Public/Reporters/FOXStandardReporter.m -------------------------------------------------------------------------------- /Pods/Fox/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/LICENSE.md -------------------------------------------------------------------------------- /Pods/Fox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Fox/README.md -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXArray.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Data/FOXArray.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXArrayGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Generators/FOXArrayGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXArrayGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXArrayGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXBindGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Generators/FOXBindGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXBlockGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Generators/FOXBlockGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXChooseGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Generators/FOXChooseGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXCommand.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXConcreteSequence.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Data/FOXConcreteSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXConstantRandom.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Random/FOXConstantRandom.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXCoreGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXCoreGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/FOXDSL.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXDebugReporter.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Reporters/FOXDebugReporter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXDebugging.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/FOXDebugging.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXDeterministicRandom.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Random/FOXDeterministicRandom.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXDictionaryGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXDictionaryGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXEnvironment.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/FOXEnvironment.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXExecutedCommand.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXExecutedCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXFiniteStateMachine.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXFiniteStateMachine.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXGenericGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXGenericGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXLazySequence.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Data/FOXLazySequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXLimits.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/FOXLimits.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/FOXMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXMapGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Generators/FOXMapGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXNamedGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Generators/FOXNamedGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXNumericGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXNumericGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXPropertyGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXPropertyGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXPropertyResult.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXPropertyResult.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXPureGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Generators/FOXPureGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXRandom.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Random/FOXRandom.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXReporter.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Reporters/FOXReporter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXRoseTree.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXRoseTree.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXRunner.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/FOXRunner.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXRunnerResult.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXRunnerResult.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXSequence.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXSequenceEnumerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Data/FOXSequenceEnumerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXSequenceGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Generators/FOXSequenceGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXSetGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXSetGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXSizedGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Generators/FOXSizedGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXStandardReporter.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Reporters/FOXStandardReporter.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXStateMachine.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXStateMachine.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXStateMachineGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXStateMachineGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXStateTransition.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXStateTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXStringGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Generators/FOXStringGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXStringGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXStringGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXSuchThatGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Generators/FOXSuchThatGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXTransition.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/FOXTupleGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Private/Generators/FOXTupleGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Fox/Fox.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Fox.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Nimble/DSL.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/objc/DSL.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Nimble/NMBExceptionCapture.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/objc/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Nimble/Nimble.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/Nimble.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Quick/NSString+QCKSelectorName.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/NSString+QCKSelectorName.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Quick/QCKDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Quick/Quick.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/Quick.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Quick/QuickConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Private/Quick/QuickSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/QuickSpec.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXArrayGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXArrayGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXCommand.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXConstantRandom.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Random/FOXConstantRandom.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXCoreGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXCoreGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/FOXDSL.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXDebugReporter.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Reporters/FOXDebugReporter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXDebugging.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/FOXDebugging.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXDeterministicRandom.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Random/FOXDeterministicRandom.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXDictionaryGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXDictionaryGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXEnvironment.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/FOXEnvironment.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXExecutedCommand.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXExecutedCommand.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXFiniteStateMachine.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXFiniteStateMachine.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXGenerator.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXGenerator.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXGenericGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXGenericGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/FOXMacros.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXNumericGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXNumericGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXPropertyGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXPropertyGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXPropertyResult.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXPropertyResult.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXRandom.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Random/FOXRandom.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXReporter.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Reporters/FOXReporter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXRoseTree.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXRoseTree.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXRunner.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/FOXRunner.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXRunnerResult.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXRunnerResult.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXSequence.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXSequence.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXSetGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXSetGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXStandardReporter.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Reporters/FOXStandardReporter.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXStateMachine.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXStateMachine.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXStateMachineGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXStateMachineGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXStateTransition.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXStateTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXStringGenerators.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Generators/FOXStringGenerators.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/FOXTransition.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Data/FOXTransition.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Fox/Fox.h: -------------------------------------------------------------------------------- 1 | ../../../Fox/Fox/Public/Fox.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Nimble/DSL.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/objc/DSL.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Nimble/NMBExceptionCapture.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/objc/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Nimble/Nimble.h: -------------------------------------------------------------------------------- 1 | ../../../Nimble/Nimble/Nimble.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Quick/NSString+QCKSelectorName.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/NSString+QCKSelectorName.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Quick/QCKDSL.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Quick/Quick.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/Quick.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Quick/QuickConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Pods/Headers/Public/Quick/QuickSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Quick/Quick/QuickSpec.h -------------------------------------------------------------------------------- /Pods/Local Podspecs/Fox.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Local Podspecs/Fox.podspec.json -------------------------------------------------------------------------------- /Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Manifest.lock -------------------------------------------------------------------------------- /Pods/Nimble/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/LICENSE.md -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Adapters/AdapterProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Adapters/AdapterProtocols.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Adapters/AssertionRecorder.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Adapters/AssertionRecorder.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Adapters/NimbleXCTestHandler.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Adapters/NimbleXCTestHandler.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/DSL+Wait.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/DSL+Wait.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/DSL.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Expectation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Expectation.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Expression.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Expression.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/FailureMessage.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/FailureMessage.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/AllPass.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/AllPass.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/BeAKindOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/BeAKindOf.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/BeAnInstanceOf.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/BeAnInstanceOf.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/BeCloseTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/BeCloseTo.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/BeEmpty.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/BeEmpty.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/BeGreaterThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/BeGreaterThan.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/BeGreaterThanOrEqualTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/BeGreaterThanOrEqualTo.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/BeIdenticalTo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/BeIdenticalTo.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/BeLessThan.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/BeLessThan.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/BeLessThanOrEqual.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/BeLessThanOrEqual.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/BeLogical.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/BeLogical.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/BeNil.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/BeNil.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/BeginWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/BeginWith.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/Contain.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/Contain.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/EndWith.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/EndWith.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/Equal.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/Equal.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/Match.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/Match.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/MatcherProtocols.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/MatcherProtocols.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Matchers/RaisesException.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Matchers/RaisesException.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Nimble.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Nimble.h -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Utils/Functional.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Utils/Functional.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Utils/Poll.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Utils/Poll.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Utils/SourceLocation.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Utils/SourceLocation.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Utils/Stringers.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Utils/Stringers.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Wrappers/AsyncMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Wrappers/AsyncMatcherWrapper.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Wrappers/BasicMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Wrappers/BasicMatcherWrapper.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Wrappers/FullMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Wrappers/FullMatcherWrapper.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Wrappers/MatcherFunc.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Wrappers/MatcherFunc.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Wrappers/NonNilMatcherWrapper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Wrappers/NonNilMatcherWrapper.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/Wrappers/ObjCMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/Wrappers/ObjCMatcher.swift -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/objc/DSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/objc/DSL.h -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/objc/DSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/objc/DSL.m -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/objc/NMBExceptionCapture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/objc/NMBExceptionCapture.h -------------------------------------------------------------------------------- /Pods/Nimble/Nimble/objc/NMBExceptionCapture.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/Nimble/objc/NMBExceptionCapture.m -------------------------------------------------------------------------------- /Pods/Nimble/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Nimble/README.md -------------------------------------------------------------------------------- /Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Pods/Quick/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/LICENSE -------------------------------------------------------------------------------- /Pods/Quick/Quick/Callsite.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/Callsite.swift -------------------------------------------------------------------------------- /Pods/Quick/Quick/Configuration/Configuration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/Configuration/Configuration.swift -------------------------------------------------------------------------------- /Pods/Quick/Quick/Configuration/QuickConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/Configuration/QuickConfiguration.h -------------------------------------------------------------------------------- /Pods/Quick/Quick/Configuration/QuickConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/Configuration/QuickConfiguration.m -------------------------------------------------------------------------------- /Pods/Quick/Quick/DSL/DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/DSL/DSL.swift -------------------------------------------------------------------------------- /Pods/Quick/Quick/DSL/QCKDSL.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/DSL/QCKDSL.h -------------------------------------------------------------------------------- /Pods/Quick/Quick/DSL/QCKDSL.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/DSL/QCKDSL.m -------------------------------------------------------------------------------- /Pods/Quick/Quick/DSL/World+DSL.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/DSL/World+DSL.swift -------------------------------------------------------------------------------- /Pods/Quick/Quick/Example.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/Example.swift -------------------------------------------------------------------------------- /Pods/Quick/Quick/ExampleGroup.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/ExampleGroup.swift -------------------------------------------------------------------------------- /Pods/Quick/Quick/ExampleMetadata.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/ExampleMetadata.swift -------------------------------------------------------------------------------- /Pods/Quick/Quick/Failure.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/Failure.swift -------------------------------------------------------------------------------- /Pods/Quick/Quick/Filter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/Filter.swift -------------------------------------------------------------------------------- /Pods/Quick/Quick/Hooks/Closures.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/Hooks/Closures.swift -------------------------------------------------------------------------------- /Pods/Quick/Quick/Hooks/ExampleHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/Hooks/ExampleHooks.swift -------------------------------------------------------------------------------- /Pods/Quick/Quick/Hooks/SuiteHooks.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/Hooks/SuiteHooks.swift -------------------------------------------------------------------------------- /Pods/Quick/Quick/NSString+QCKSelectorName.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/NSString+QCKSelectorName.h -------------------------------------------------------------------------------- /Pods/Quick/Quick/NSString+QCKSelectorName.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/NSString+QCKSelectorName.m -------------------------------------------------------------------------------- /Pods/Quick/Quick/Quick.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/Quick.h -------------------------------------------------------------------------------- /Pods/Quick/Quick/QuickSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/QuickSpec.h -------------------------------------------------------------------------------- /Pods/Quick/Quick/QuickSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/QuickSpec.m -------------------------------------------------------------------------------- /Pods/Quick/Quick/World.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/Quick/World.swift -------------------------------------------------------------------------------- /Pods/Quick/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Quick/README.md -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Fox/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Fox/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Fox/Pods-RandomAppTests-Fox-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Fox/Pods-RandomAppTests-Fox-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Fox/Pods-RandomAppTests-Fox-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Fox/Pods-RandomAppTests-Fox-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Fox/Pods-RandomAppTests-Fox-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Fox/Pods-RandomAppTests-Fox-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Fox/Pods-RandomAppTests-Fox-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Fox/Pods-RandomAppTests-Fox-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Fox/Pods-RandomAppTests-Fox.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Fox/Pods-RandomAppTests-Fox.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Fox/Pods-RandomAppTests-Fox.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Fox/Pods-RandomAppTests-Fox.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Nimble/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Nimble/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Nimble/Pods-RandomAppTests-Nimble-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Nimble/Pods-RandomAppTests-Nimble-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Nimble/Pods-RandomAppTests-Nimble-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Nimble/Pods-RandomAppTests-Nimble-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Nimble/Pods-RandomAppTests-Nimble-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Nimble/Pods-RandomAppTests-Nimble-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Nimble/Pods-RandomAppTests-Nimble-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Nimble/Pods-RandomAppTests-Nimble-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Nimble/Pods-RandomAppTests-Nimble.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Nimble/Pods-RandomAppTests-Nimble.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Nimble/Pods-RandomAppTests-Nimble.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Nimble/Pods-RandomAppTests-Nimble.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Quick/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Quick/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Quick/Pods-RandomAppTests-Quick-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Quick/Pods-RandomAppTests-Quick-Private.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Quick/Pods-RandomAppTests-Quick-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Quick/Pods-RandomAppTests-Quick-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Quick/Pods-RandomAppTests-Quick-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Quick/Pods-RandomAppTests-Quick-prefix.pch -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Quick/Pods-RandomAppTests-Quick-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Quick/Pods-RandomAppTests-Quick-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Quick/Pods-RandomAppTests-Quick.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Quick/Pods-RandomAppTests-Quick.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests-Quick/Pods-RandomAppTests-Quick.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests-Quick/Pods-RandomAppTests-Quick.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests/Info.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-acknowledgements.markdown -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-acknowledgements.plist -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-dummy.m -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-environment.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-frameworks.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-resources.sh -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests-umbrella.h -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests.debug.xcconfig -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests.modulemap -------------------------------------------------------------------------------- /Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/Pods/Target Support Files/Pods-RandomAppTests/Pods-RandomAppTests.release.xcconfig -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/README.md -------------------------------------------------------------------------------- /RandomApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /RandomApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RandomApp.xcworkspace/QuickRandom.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp.xcworkspace/QuickRandom.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RandomApp.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /RandomApp/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp/AppDelegate.swift -------------------------------------------------------------------------------- /RandomApp/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /RandomApp/DetailViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp/DetailViewController.swift -------------------------------------------------------------------------------- /RandomApp/DetailViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp/DetailViewController.xib -------------------------------------------------------------------------------- /RandomApp/HTTPClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp/HTTPClient.swift -------------------------------------------------------------------------------- /RandomApp/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /RandomApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp/Info.plist -------------------------------------------------------------------------------- /RandomApp/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp/ListViewController.swift -------------------------------------------------------------------------------- /RandomApp/NetworkActivityController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp/NetworkActivityController.swift -------------------------------------------------------------------------------- /RandomApp/RandomClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp/RandomClient.swift -------------------------------------------------------------------------------- /RandomApp/secrets.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomApp/secrets.swift -------------------------------------------------------------------------------- /RandomAppTests/DetailViewControllerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/DetailViewControllerSpec.swift -------------------------------------------------------------------------------- /RandomAppTests/Fakes/FakeHTTPClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/Fakes/FakeHTTPClient.swift -------------------------------------------------------------------------------- /RandomAppTests/Fakes/FakeResponses.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/Fakes/FakeResponses.swift -------------------------------------------------------------------------------- /RandomAppTests/Generative Testing/RollingGenerativeTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/Generative Testing/RollingGenerativeTest.swift -------------------------------------------------------------------------------- /RandomAppTests/Generative Testing/SortingGenerativeTest.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/Generative Testing/SortingGenerativeTest.swift -------------------------------------------------------------------------------- /RandomAppTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/Info.plist -------------------------------------------------------------------------------- /RandomAppTests/ListViewControllerSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/ListViewControllerSpec.swift -------------------------------------------------------------------------------- /RandomAppTests/RandomClientSpec.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/RandomClientSpec.swift -------------------------------------------------------------------------------- /RandomAppTests/SortingTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/SortingTests.swift -------------------------------------------------------------------------------- /RandomAppTests/Support/Matchers/hasJSONBodyMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/Support/Matchers/hasJSONBodyMatcher.swift -------------------------------------------------------------------------------- /RandomAppTests/Support/Matchers/urlEqualMatcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/Support/Matchers/urlEqualMatcher.swift -------------------------------------------------------------------------------- /RandomAppTests/Support/PerformSelector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/Support/PerformSelector.h -------------------------------------------------------------------------------- /RandomAppTests/Support/PerformSelector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/Support/PerformSelector.m -------------------------------------------------------------------------------- /RandomAppTests/Support/RandomAppTests-Bridging-Header.h: -------------------------------------------------------------------------------- 1 | #import "PerformSelector.h" -------------------------------------------------------------------------------- /RandomAppTests/Support/UISupport.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeffh/TestingInSwift/HEAD/RandomAppTests/Support/UISupport.swift --------------------------------------------------------------------------------