├── .clang-format ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CompositeOperations-Diagram.svg ├── CompositeOperations.podspec ├── CompositeOperations.xcconfig ├── CompositeOperations ├── COAbstractOperation.h ├── COAbstractOperation.m ├── COAbstractOperation_Private.h ├── COCompositeOperation.h ├── COCompositeOperation.m ├── COOperation.h ├── COSequence.h ├── COSequence.m ├── COSimpleOperation.h ├── COSimpleOperation.m ├── CompositeOperations.h ├── Info.plist ├── __COParallelOperation.h ├── __COParallelOperation.m ├── __COSequentialOperation.h └── __COSequentialOperation.m ├── DevelopmentApp ├── CompositeOperations-OSX │ └── Info.plist ├── CompositeOperations-OSXTests │ ├── CompositeOperations_OSXTests.m │ └── Info.plist ├── CompositeOperations-iOS │ └── Info.plist ├── CompositeOperations-iOSTests │ └── Info.plist ├── DevelopmentApp.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ └── DevelopmentApp.xccheckout │ ├── xcshareddata │ │ └── xcschemes │ │ │ ├── CompositeOperations-OSX.xcscheme │ │ │ └── CompositeOperations-iOS.xcscheme │ └── xcuserdata │ │ └── Stanislaw.xcuserdatad │ │ └── xcschemes │ │ └── xcschememanagement.plist ├── Example │ ├── Classes │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Operations │ │ │ ├── Github │ │ │ │ ├── GithubRepositoryIssuesFetchOperation.h │ │ │ │ ├── GithubRepositoryIssuesFetchOperation.m │ │ │ │ ├── GithubUserIssuesOperationSequence.h │ │ │ │ ├── GithubUserIssuesOperationSequence.m │ │ │ │ ├── GithubUserRepositoriesFetchOperation.h │ │ │ │ └── GithubUserRepositoriesFetchOperation.m │ │ │ ├── OperationsRepository.h │ │ │ └── OperationsRepository.m │ │ ├── ViewController.h │ │ └── ViewController.m │ ├── Etc │ │ ├── Base.lproj │ │ │ ├── LaunchScreen.storyboard │ │ │ └── Main.storyboard │ │ ├── Info.plist │ │ └── main.m │ └── Resources │ │ └── Assets.xcassets │ │ └── AppIcon.appiconset │ │ └── Contents.json └── Frameworks │ └── Kiwi.framework │ ├── Headers │ ├── Kiwi │ ├── Resources │ └── Versions │ ├── A │ ├── Headers │ │ ├── KWAfterAllNode.h │ │ ├── KWAfterEachNode.h │ │ ├── KWAny.h │ │ ├── KWAsyncVerifier.h │ │ ├── KWBeBetweenMatcher.h │ │ ├── KWBeEmptyMatcher.h │ │ ├── KWBeIdenticalToMatcher.h │ │ ├── KWBeKindOfClassMatcher.h │ │ ├── KWBeMemberOfClassMatcher.h │ │ ├── KWBeSubclassOfClassMatcher.h │ │ ├── KWBeTrueMatcher.h │ │ ├── KWBeWithinMatcher.h │ │ ├── KWBeZeroMatcher.h │ │ ├── KWBeforeAllNode.h │ │ ├── KWBeforeEachNode.h │ │ ├── KWBlock.h │ │ ├── KWBlockNode.h │ │ ├── KWBlockRaiseMatcher.h │ │ ├── KWCallSite.h │ │ ├── KWCaptureSpy.h │ │ ├── KWChangeMatcher.h │ │ ├── KWConformToProtocolMatcher.h │ │ ├── KWContainMatcher.h │ │ ├── KWContainStringMatcher.h │ │ ├── KWContextNode.h │ │ ├── KWCountType.h │ │ ├── KWDeviceInfo.h │ │ ├── KWEqualMatcher.h │ │ ├── KWExample.h │ │ ├── KWExampleDelegate.h │ │ ├── KWExampleNode.h │ │ ├── KWExampleNodeVisitor.h │ │ ├── KWExampleSuite.h │ │ ├── KWExampleSuiteBuilder.h │ │ ├── KWExistVerifier.h │ │ ├── KWExpectationType.h │ │ ├── KWFailure.h │ │ ├── KWFormatter.h │ │ ├── KWFutureObject.h │ │ ├── KWGenericMatchEvaluator.h │ │ ├── KWGenericMatcher.h │ │ ├── KWGenericMatchingAdditions.h │ │ ├── KWHaveMatcher.h │ │ ├── KWHaveValueMatcher.h │ │ ├── KWInequalityMatcher.h │ │ ├── KWIntercept.h │ │ ├── KWInvocationCapturer.h │ │ ├── KWItNode.h │ │ ├── KWLet.h │ │ ├── KWMatchVerifier.h │ │ ├── KWMatcher.h │ │ ├── KWMatcherFactory.h │ │ ├── KWMatchers.h │ │ ├── KWMatching.h │ │ ├── KWMessagePattern.h │ │ ├── KWMessageSpying.h │ │ ├── KWMessageTracker.h │ │ ├── KWMock.h │ │ ├── KWNilMatcher.h │ │ ├── KWNotificationMatcher.h │ │ ├── KWNull.h │ │ ├── KWObjCUtilities.h │ │ ├── KWPendingNode.h │ │ ├── KWProbe.h │ │ ├── KWProbePoller.h │ │ ├── KWReceiveMatcher.h │ │ ├── KWRegisterMatchersNode.h │ │ ├── KWRegularExpressionPatternMatcher.h │ │ ├── KWReporting.h │ │ ├── KWRespondToSelectorMatcher.h │ │ ├── KWSpec.h │ │ ├── KWStringContainsMatcher.h │ │ ├── KWStringPrefixMatcher.h │ │ ├── KWStringUtilities.h │ │ ├── KWStub.h │ │ ├── KWSuiteConfigurationBase.h │ │ ├── KWSymbolicator.h │ │ ├── KWUserDefinedMatcher.h │ │ ├── KWValue.h │ │ ├── KWVerifying.h │ │ ├── KWWorkarounds.h │ │ ├── Kiwi.h │ │ ├── KiwiBlockMacros.h │ │ ├── KiwiConfiguration.h │ │ ├── KiwiMacros.h │ │ ├── NSInvocation+KiwiAdditions.h │ │ ├── NSInvocation+OCMAdditions.h │ │ ├── NSMethodSignature+KiwiAdditions.h │ │ ├── NSNumber+KiwiAdditions.h │ │ ├── NSObject+KiwiMockAdditions.h │ │ ├── NSObject+KiwiSpyAdditions.h │ │ ├── NSObject+KiwiStubAdditions.h │ │ ├── NSObject+KiwiVerifierAdditions.h │ │ ├── NSProxy+KiwiVerifierAdditions.h │ │ └── NSValue+KiwiAdditions.h │ └── Kiwi │ └── Current ├── Documentation └── Examples.md ├── ExampleApp ├── ExampleApp.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata └── ExampleApp │ ├── Classes │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Operations │ │ ├── Github │ │ │ ├── GithubRepositoryIssuesFetchOperation.h │ │ │ ├── GithubRepositoryIssuesFetchOperation.m │ │ │ ├── GithubUserIssuesOperationSequence.h │ │ │ ├── GithubUserIssuesOperationSequence.m │ │ │ ├── GithubUserRepositoriesFetchOperation.h │ │ │ └── GithubUserRepositoriesFetchOperation.m │ │ ├── OperationsRepository.h │ │ └── OperationsRepository.m │ ├── ViewController.h │ ├── ViewController.m │ └── main.m │ ├── Etc │ ├── Config.xcconfig │ └── Info.plist │ └── Resources │ ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json │ └── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── LICENSE ├── Makefile ├── Makefile.OSX ├── Makefile.iOS ├── README.md ├── Tests ├── Supporting Files │ └── Info.plist ├── TestHelpers │ ├── Assertions.h │ ├── TestHelpers.h │ ├── TestOperations.h │ ├── TestOperations.m │ ├── TestSequences.h │ └── TestSequences.m └── Tests │ ├── COCompositeOperationTests.m │ ├── COParallelOperationTests.m │ ├── COSequenceTests.m │ ├── COSequentialOperationTests.m │ ├── COSimpleOperationTests.m │ └── CompositeOperationsTests.m └── format.sh /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: objective-c 2 | script: make 3 | 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CompositeOperations-Diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations-Diagram.svg -------------------------------------------------------------------------------- /CompositeOperations.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations.podspec -------------------------------------------------------------------------------- /CompositeOperations.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations.xcconfig -------------------------------------------------------------------------------- /CompositeOperations/COAbstractOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/COAbstractOperation.h -------------------------------------------------------------------------------- /CompositeOperations/COAbstractOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/COAbstractOperation.m -------------------------------------------------------------------------------- /CompositeOperations/COAbstractOperation_Private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/COAbstractOperation_Private.h -------------------------------------------------------------------------------- /CompositeOperations/COCompositeOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/COCompositeOperation.h -------------------------------------------------------------------------------- /CompositeOperations/COCompositeOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/COCompositeOperation.m -------------------------------------------------------------------------------- /CompositeOperations/COOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/COOperation.h -------------------------------------------------------------------------------- /CompositeOperations/COSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/COSequence.h -------------------------------------------------------------------------------- /CompositeOperations/COSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/COSequence.m -------------------------------------------------------------------------------- /CompositeOperations/COSimpleOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/COSimpleOperation.h -------------------------------------------------------------------------------- /CompositeOperations/COSimpleOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/COSimpleOperation.m -------------------------------------------------------------------------------- /CompositeOperations/CompositeOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/CompositeOperations.h -------------------------------------------------------------------------------- /CompositeOperations/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/Info.plist -------------------------------------------------------------------------------- /CompositeOperations/__COParallelOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/__COParallelOperation.h -------------------------------------------------------------------------------- /CompositeOperations/__COParallelOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/__COParallelOperation.m -------------------------------------------------------------------------------- /CompositeOperations/__COSequentialOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/__COSequentialOperation.h -------------------------------------------------------------------------------- /CompositeOperations/__COSequentialOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/CompositeOperations/__COSequentialOperation.m -------------------------------------------------------------------------------- /DevelopmentApp/CompositeOperations-OSX/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/CompositeOperations-OSX/Info.plist -------------------------------------------------------------------------------- /DevelopmentApp/CompositeOperations-OSXTests/CompositeOperations_OSXTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/CompositeOperations-OSXTests/CompositeOperations_OSXTests.m -------------------------------------------------------------------------------- /DevelopmentApp/CompositeOperations-OSXTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/CompositeOperations-OSXTests/Info.plist -------------------------------------------------------------------------------- /DevelopmentApp/CompositeOperations-iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/CompositeOperations-iOS/Info.plist -------------------------------------------------------------------------------- /DevelopmentApp/CompositeOperations-iOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/CompositeOperations-iOSTests/Info.plist -------------------------------------------------------------------------------- /DevelopmentApp/DevelopmentApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/DevelopmentApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DevelopmentApp/DevelopmentApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/DevelopmentApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DevelopmentApp/DevelopmentApp.xcodeproj/project.xcworkspace/xcshareddata/DevelopmentApp.xccheckout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/DevelopmentApp.xcodeproj/project.xcworkspace/xcshareddata/DevelopmentApp.xccheckout -------------------------------------------------------------------------------- /DevelopmentApp/DevelopmentApp.xcodeproj/xcshareddata/xcschemes/CompositeOperations-OSX.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/DevelopmentApp.xcodeproj/xcshareddata/xcschemes/CompositeOperations-OSX.xcscheme -------------------------------------------------------------------------------- /DevelopmentApp/DevelopmentApp.xcodeproj/xcshareddata/xcschemes/CompositeOperations-iOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/DevelopmentApp.xcodeproj/xcshareddata/xcschemes/CompositeOperations-iOS.xcscheme -------------------------------------------------------------------------------- /DevelopmentApp/DevelopmentApp.xcodeproj/xcuserdata/Stanislaw.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/DevelopmentApp.xcodeproj/xcuserdata/Stanislaw.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DevelopmentApp/Example/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Classes/AppDelegate.h -------------------------------------------------------------------------------- /DevelopmentApp/Example/Classes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Classes/AppDelegate.m -------------------------------------------------------------------------------- /DevelopmentApp/Example/Classes/Operations/Github/GithubRepositoryIssuesFetchOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Classes/Operations/Github/GithubRepositoryIssuesFetchOperation.h -------------------------------------------------------------------------------- /DevelopmentApp/Example/Classes/Operations/Github/GithubRepositoryIssuesFetchOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Classes/Operations/Github/GithubRepositoryIssuesFetchOperation.m -------------------------------------------------------------------------------- /DevelopmentApp/Example/Classes/Operations/Github/GithubUserIssuesOperationSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Classes/Operations/Github/GithubUserIssuesOperationSequence.h -------------------------------------------------------------------------------- /DevelopmentApp/Example/Classes/Operations/Github/GithubUserIssuesOperationSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Classes/Operations/Github/GithubUserIssuesOperationSequence.m -------------------------------------------------------------------------------- /DevelopmentApp/Example/Classes/Operations/Github/GithubUserRepositoriesFetchOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Classes/Operations/Github/GithubUserRepositoriesFetchOperation.h -------------------------------------------------------------------------------- /DevelopmentApp/Example/Classes/Operations/Github/GithubUserRepositoriesFetchOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Classes/Operations/Github/GithubUserRepositoriesFetchOperation.m -------------------------------------------------------------------------------- /DevelopmentApp/Example/Classes/Operations/OperationsRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Classes/Operations/OperationsRepository.h -------------------------------------------------------------------------------- /DevelopmentApp/Example/Classes/Operations/OperationsRepository.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Classes/Operations/OperationsRepository.m -------------------------------------------------------------------------------- /DevelopmentApp/Example/Classes/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Classes/ViewController.h -------------------------------------------------------------------------------- /DevelopmentApp/Example/Classes/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Classes/ViewController.m -------------------------------------------------------------------------------- /DevelopmentApp/Example/Etc/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Etc/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DevelopmentApp/Example/Etc/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Etc/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DevelopmentApp/Example/Etc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Etc/Info.plist -------------------------------------------------------------------------------- /DevelopmentApp/Example/Etc/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Etc/main.m -------------------------------------------------------------------------------- /DevelopmentApp/Example/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Example/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Kiwi: -------------------------------------------------------------------------------- 1 | Versions/Current/Kiwi -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWAfterAllNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWAfterAllNode.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWAfterEachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWAfterEachNode.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWAny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWAny.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWAsyncVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeforeAllNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeforeAllNode.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeforeEachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBeforeEachNode.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBlock.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBlockNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBlockNode.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWCallSite.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWCaptureSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWCaptureSpy.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWChangeMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWChangeMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWContainMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWContainMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWContainStringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWContextNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWContextNode.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWCountType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWCountType.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWDeviceInfo.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWEqualMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWEqualMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExample.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExampleDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExampleDelegate.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExampleNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExampleNode.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExampleSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExampleSuite.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExistVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExistVerifier.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExpectationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWExpectationType.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWFailure.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWFormatter.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWFutureObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWFutureObject.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWGenericMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWGenericMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWHaveMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWHaveMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWInequalityMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWIntercept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWIntercept.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWInvocationCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWInvocationCapturer.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWItNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWItNode.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWLet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWLet.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMatchVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMatchVerifier.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMatcherFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMatcherFactory.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMatchers.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMatching.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMessagePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMessagePattern.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMessageSpying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMessageSpying.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMessageTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMessageTracker.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWMock.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWNilMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWNilMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWNotificationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWNotificationMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWNull.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWObjCUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWObjCUtilities.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWPendingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWPendingNode.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWProbe.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWProbePoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWProbePoller.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWReceiveMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWReporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWReporting.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWSpec.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWStringUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWStringUtilities.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWStub.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWSuiteConfigurationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWSuiteConfigurationBase.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWSymbolicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWSymbolicator.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWValue.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWVerifying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWVerifying.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWWorkarounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KWWorkarounds.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/Kiwi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/Kiwi.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KiwiBlockMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KiwiBlockMacros.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KiwiConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KiwiConfiguration.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KiwiMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/KiwiMacros.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Headers/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Kiwi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/DevelopmentApp/Frameworks/Kiwi.framework/Versions/A/Kiwi -------------------------------------------------------------------------------- /DevelopmentApp/Frameworks/Kiwi.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Documentation/Examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Documentation/Examples.md -------------------------------------------------------------------------------- /ExampleApp/ExampleApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ExampleApp/ExampleApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/AppDelegate.h -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/AppDelegate.m -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/Operations/Github/GithubRepositoryIssuesFetchOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/Operations/Github/GithubRepositoryIssuesFetchOperation.h -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/Operations/Github/GithubRepositoryIssuesFetchOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/Operations/Github/GithubRepositoryIssuesFetchOperation.m -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/Operations/Github/GithubUserIssuesOperationSequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/Operations/Github/GithubUserIssuesOperationSequence.h -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/Operations/Github/GithubUserIssuesOperationSequence.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/Operations/Github/GithubUserIssuesOperationSequence.m -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/Operations/Github/GithubUserRepositoriesFetchOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/Operations/Github/GithubUserRepositoriesFetchOperation.h -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/Operations/Github/GithubUserRepositoriesFetchOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/Operations/Github/GithubUserRepositoriesFetchOperation.m -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/Operations/OperationsRepository.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/Operations/OperationsRepository.h -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/Operations/OperationsRepository.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/Operations/OperationsRepository.m -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/ViewController.h -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/ViewController.m -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Classes/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Classes/main.m -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Etc/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Etc/Config.xcconfig -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Etc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Etc/Info.plist -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Resources/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Resources/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Resources/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ExampleApp/ExampleApp/Resources/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/ExampleApp/ExampleApp/Resources/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Makefile.OSX -------------------------------------------------------------------------------- /Makefile.iOS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Makefile.iOS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/README.md -------------------------------------------------------------------------------- /Tests/Supporting Files/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/Supporting Files/Info.plist -------------------------------------------------------------------------------- /Tests/TestHelpers/Assertions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/TestHelpers/Assertions.h -------------------------------------------------------------------------------- /Tests/TestHelpers/TestHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/TestHelpers/TestHelpers.h -------------------------------------------------------------------------------- /Tests/TestHelpers/TestOperations.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/TestHelpers/TestOperations.h -------------------------------------------------------------------------------- /Tests/TestHelpers/TestOperations.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/TestHelpers/TestOperations.m -------------------------------------------------------------------------------- /Tests/TestHelpers/TestSequences.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/TestHelpers/TestSequences.h -------------------------------------------------------------------------------- /Tests/TestHelpers/TestSequences.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/TestHelpers/TestSequences.m -------------------------------------------------------------------------------- /Tests/Tests/COCompositeOperationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/Tests/COCompositeOperationTests.m -------------------------------------------------------------------------------- /Tests/Tests/COParallelOperationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/Tests/COParallelOperationTests.m -------------------------------------------------------------------------------- /Tests/Tests/COSequenceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/Tests/COSequenceTests.m -------------------------------------------------------------------------------- /Tests/Tests/COSequentialOperationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/Tests/COSequentialOperationTests.m -------------------------------------------------------------------------------- /Tests/Tests/COSimpleOperationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/Tests/COSimpleOperationTests.m -------------------------------------------------------------------------------- /Tests/Tests/CompositeOperationsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/Tests/Tests/CompositeOperationsTests.m -------------------------------------------------------------------------------- /format.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stanislaw/CompositeOperations/HEAD/format.sh --------------------------------------------------------------------------------