├── .buckconfig ├── .buckversion ├── .gitignore ├── .travis.yml ├── .watchmanconfig ├── BUCK ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Common ├── DuplicateTestNameFix.h ├── DuplicateTestNameFix.m ├── EventGenerator.h ├── EventGenerator.m ├── EventSink.h ├── FakeFileHandle.h ├── FakeFileHandle.m ├── NSConcreteTask.h ├── NSFileHandle+Print.h ├── NSFileHandle+Print.m ├── NSInvocationInSetFix.h ├── NSInvocationInSetFix.m ├── ParseTestName.h ├── ParseTestName.m ├── Reporter.h ├── Reporter.m ├── ReporterEvents.h ├── SenIsSuperclassOfClassPerformanceFix.h ├── SenIsSuperclassOfClassPerformanceFix.m ├── Swizzle.h ├── Swizzle.m ├── TaskUtil.h ├── TaskUtil.m ├── TestingFramework.h ├── TestingFramework.m ├── XCTest.h ├── XCToolUtil.h ├── XCToolUtil.m ├── XcodeBuildSettings.h ├── XcodeBuildSettings.m ├── XcodeRequiredVersion.m ├── dyld-interposing.h └── dyld_priv.h ├── Configurations ├── AppleTV.xcconfig ├── Install.xcconfig ├── Project.xcconfig ├── Tests.xcconfig └── iOS.xcconfig ├── LICENSE ├── README.md ├── Vendor ├── OCHamcrest.framework │ ├── Headers │ ├── OCHamcrest │ ├── Resources │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── HCAllOf.h │ │ │ ├── HCAnyOf.h │ │ │ ├── HCAssertThat.h │ │ │ ├── HCBaseDescription.h │ │ │ ├── HCBaseMatcher.h │ │ │ ├── HCClassMatcher.h │ │ │ ├── HCCollect.h │ │ │ ├── HCConformsToProtocol.h │ │ │ ├── HCDescribedAs.h │ │ │ ├── HCDescription.h │ │ │ ├── HCDiagnosingMatcher.h │ │ │ ├── HCEvery.h │ │ │ ├── HCHasCount.h │ │ │ ├── HCHasDescription.h │ │ │ ├── HCHasProperty.h │ │ │ ├── HCInvocationMatcher.h │ │ │ ├── HCIs.h │ │ │ ├── HCIsAnything.h │ │ │ ├── HCIsCloseTo.h │ │ │ ├── HCIsCollectionContaining.h │ │ │ ├── HCIsCollectionContainingInAnyOrder.h │ │ │ ├── HCIsCollectionContainingInOrder.h │ │ │ ├── HCIsCollectionOnlyContaining.h │ │ │ ├── HCIsDictionaryContaining.h │ │ │ ├── HCIsDictionaryContainingEntries.h │ │ │ ├── HCIsDictionaryContainingKey.h │ │ │ ├── HCIsDictionaryContainingValue.h │ │ │ ├── HCIsEmptyCollection.h │ │ │ ├── HCIsEqual.h │ │ │ ├── HCIsEqualIgnoringCase.h │ │ │ ├── HCIsEqualIgnoringWhiteSpace.h │ │ │ ├── HCIsEqualToNumber.h │ │ │ ├── HCIsIn.h │ │ │ ├── HCIsInstanceOf.h │ │ │ ├── HCIsNil.h │ │ │ ├── HCIsNot.h │ │ │ ├── HCIsSame.h │ │ │ ├── HCIsTrueFalse.h │ │ │ ├── HCIsTypeOf.h │ │ │ ├── HCMatcher.h │ │ │ ├── HCNumberAssert.h │ │ │ ├── HCOrderingComparison.h │ │ │ ├── HCRequireNonNilObject.h │ │ │ ├── HCSelfDescribing.h │ │ │ ├── HCStringContains.h │ │ │ ├── HCStringContainsInOrder.h │ │ │ ├── HCStringDescription.h │ │ │ ├── HCStringEndsWith.h │ │ │ ├── HCStringStartsWith.h │ │ │ ├── HCSubstringMatcher.h │ │ │ ├── HCTestFailure.h │ │ │ ├── HCTestFailureHandler.h │ │ │ ├── HCTestFailureHandlerChain.h │ │ │ ├── HCThrowsException.h │ │ │ ├── HCWrapInMatcher.h │ │ │ └── OCHamcrest.h │ │ ├── OCHamcrest │ │ └── Resources │ │ │ └── Info.plist │ │ └── Current ├── OCMock.framework │ ├── Headers │ ├── OCMock │ ├── Resources │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── NSNotificationCenter+OCMAdditions.h │ │ │ ├── OCMArg.h │ │ │ ├── OCMConstraint.h │ │ │ ├── OCMLocation.h │ │ │ ├── OCMMacroState.h │ │ │ ├── OCMRecorder.h │ │ │ ├── OCMStubRecorder.h │ │ │ ├── OCMock.h │ │ │ └── OCMockObject.h │ │ ├── OCMock │ │ └── Resources │ │ │ ├── Info.plist │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ │ └── Current └── OCMockito.framework │ ├── Headers │ ├── OCMockito │ ├── Resources │ └── Versions │ ├── A │ ├── Headers │ │ ├── MKTArgumentCaptor.h │ │ ├── MKTBaseMockObject.h │ │ ├── MKTClassObjectMock.h │ │ ├── MKTObjectAndProtocolMock.h │ │ ├── MKTObjectMock.h │ │ ├── MKTOngoingStubbing.h │ │ ├── MKTPrimitiveArgumentMatching.h │ │ ├── MKTProtocolMock.h │ │ ├── NSInvocation+OCMockito.h │ │ └── OCMockito.h │ ├── OCMockito │ └── Resources │ │ └── Info.plist │ └── Current ├── otest-query ├── OtestQuery │ ├── OtestQuery.h │ └── OtestQuery.m ├── otest-query-appletv.xcconfig ├── otest-query-ios.xcconfig ├── otest-query-ios │ ├── main.m │ └── otest-query-ios-Prefix.pch ├── otest-query-lib-appletv.xcconfig ├── otest-query-lib-ios.xcconfig ├── otest-query-lib-osx.xcconfig ├── otest-query-lib │ └── otest-query-lib.m ├── otest-query-osx.xcconfig ├── otest-query-osx │ ├── main.m │ └── otest-query-osx-Prefix.pch └── otest-query.xcodeproj │ └── project.pbxproj ├── otest-shim ├── README.md ├── SenTestingKit │ ├── NSException_SenTestFailure.h │ ├── NSInvocation_SenTesting.h │ ├── SenInterfaceTestCase.h │ ├── SenTest.h │ ├── SenTestCase.h │ ├── SenTestCaseRun.h │ ├── SenTestCase_Macros.h │ ├── SenTestDefines.h │ ├── SenTestDistributedNotifier.h │ ├── SenTestLog.h │ ├── SenTestObserver.h │ ├── SenTestProbe.h │ ├── SenTestRun.h │ ├── SenTestSuite.h │ ├── SenTestSuiteRun.h │ ├── SenTestingKit.h │ └── SenTestingUtilities.h ├── otest-shim-appletv.xcconfig ├── otest-shim-ios.xcconfig ├── otest-shim-osx.xcconfig ├── otest-shim.xcconfig ├── otest-shim.xcodeproj │ └── project.pbxproj └── otest-shim │ ├── SenTestCaseInvokeTestFix.h │ ├── SenTestCaseInvokeTestFix.m │ ├── SenTestClassEnumeratorFix.h │ ├── SenTestClassEnumeratorFix.m │ ├── otest-shim-Prefix.pch │ └── otest-shim.m ├── reporters ├── TestResultCounter.h ├── TestResultCounter.m ├── json-compilation-database │ ├── JSONCompilationDatabaseReporter.h │ ├── JSONCompilationDatabaseReporter.m │ └── main.m ├── json-stream │ └── main.m ├── junit │ ├── JUnitReporter.h │ ├── JUnitReporter.m │ └── main.m ├── phabricator │ ├── PhabricatorReporter.h │ ├── PhabricatorReporter.m │ └── main.m ├── reporters-tests.xcconfig ├── reporters-tests │ ├── JSONCompilationDatabaseReporterTests.m │ ├── JUnitReporterTests.m │ ├── PhabricatorReporterTests.m │ ├── TextReporterTests.m │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── reporters-tests-Info.plist │ └── reporters-tests-Prefix.pch ├── reporters.xcconfig ├── reporters.xcodeproj │ └── project.pbxproj ├── reporters │ ├── Reporter+Testing.h │ └── Reporter+Testing.m ├── teamcity │ ├── TeamCityReporter.h │ ├── TeamCityReporter.m │ ├── TeamCityStatusMessageGenerator.h │ ├── TeamCityStatusMessageGenerator.m │ └── main.m ├── text │ ├── TextReporter.h │ ├── TextReporter.m │ └── main.m └── user-notifications │ ├── UserNotificationsReporter.h │ ├── UserNotificationsReporter.m │ ├── main.m │ └── user-notifications-Info.plist ├── scripts ├── RunScripts │ ├── assert_universal.sh │ └── codesign.sh ├── build.sh ├── build_needed.sh ├── create_xctool_zip.sh ├── make_release.sh ├── test.sh ├── travis-ci.sh └── xctool.sh ├── xcodebuild-shim ├── README.md ├── xcodebuild-fastsettings-shim │ ├── xcodebuild-fastsettings-shim-Prefix.pch │ └── xcodebuild_fastsettings_shim.m ├── xcodebuild-shim.xcconfig ├── xcodebuild-shim.xcodeproj │ └── project.pbxproj └── xcodebuild-shim │ ├── xcodebuild-shim-Prefix.pch │ └── xcodebuild_shim.m ├── xctool.sh ├── xctool.xcworkspace ├── contents.xcworkspacedata └── xcshareddata │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings └── xctool ├── Headers ├── CoreSimulator │ ├── SimDevice.h │ ├── SimDeviceSet.h │ ├── SimDeviceType.h │ ├── SimRuntime.h │ ├── SimServiceContext.h │ └── SimVerifier.h ├── XCTest │ └── XCTestConfiguration.h └── iPhoneSimulatorRemoteClient │ └── DTiPhoneSimulatorRemoteClient.h ├── xctool-tests.xcconfig ├── xctool-tests ├── ActionScriptsTests.m ├── ActionTests.m ├── ArchiveActionTests.m ├── BuildActionTests.m ├── BuildStateParserTests.m ├── BuildTestsActionTests.m ├── CleanActionTests.m ├── ContainsArray.h ├── ContainsArray.m ├── ContainsAssertionFailure.h ├── ContainsAssertionFailure.m ├── FakeOCUnitTestRunner.h ├── FakeOCUnitTestRunner.m ├── FakeSimDevice.h ├── FakeSimDevice.m ├── FakeTask.h ├── FakeTask.m ├── FakeTaskManager.h ├── FakeTaskManager.m ├── FakeTaskManagerTests.m ├── LaunchHandlers.h ├── LaunchHandlers.m ├── OCEventStateTests.m ├── OCTestEventStateTests.m ├── OCTestSuiteEventStateTests.m ├── OCUnitTestRunnerTests.m ├── OTestQueryTests.m ├── OTestShimTests.m ├── Options+Testing.h ├── Options+Testing.m ├── OptionsTests.m ├── PbxprojReaderTests.m ├── ReportStatusTests.m ├── ReporterTaskTests.m ├── RunTestsActionTests.m ├── SimulatorWrapperTests.m ├── Swizzler.h ├── Swizzler.m ├── SwizzlerTests.m ├── TaskUtilTests.m ├── TestActionTests.m ├── TestConstants.h ├── TestData │ ├── BrokenUTF8EncodingInFile-FIXED.txt │ ├── BrokenUTF8EncodingInFile.txt │ ├── BuildSettingsWithConfigurationFile.txt │ ├── BuildSettingsWithUserDefaults.txt │ ├── ContextTest.m │ ├── FakeApp.app │ │ ├── FakeApp │ │ ├── Info.plist │ │ └── PkgInfo │ ├── JSONJUnitReporter-XMLTreeMinification-expected.txt │ ├── JSONJUnitReporter-XMLTreeMinification.txt │ ├── JSONStreamReporter-build-bad.txt │ ├── JSONStreamReporter-build-good.txt │ ├── JSONStreamReporter-expected.xml │ ├── JSONStreamReporter-runtests-for-test-state-tests.txt │ ├── JSONStreamReporter-runtests.txt │ ├── KiwiTests │ │ ├── .gitignore │ │ ├── Build │ │ │ └── Products │ │ │ │ └── Debug-iphonesimulator │ │ │ │ ├── KiwiTests-OCUnit-AppTests.octest │ │ │ │ ├── Assets.car │ │ │ │ ├── Info.plist │ │ │ │ ├── KiwiTests-OCUnit-AppTests │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── KiwiTests-OCUnit.octest │ │ │ │ ├── Assets.car │ │ │ │ ├── Info.plist │ │ │ │ ├── KiwiTests-OCUnit │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── KiwiTests-TestHost.app │ │ │ │ ├── Assets.car │ │ │ │ ├── Info.plist │ │ │ │ ├── KiwiTests-TestHost │ │ │ │ ├── LaunchImage-700-568h@2x.png │ │ │ │ ├── PkgInfo │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── KiwiTests-XCTest-AppTests.xctest │ │ │ │ ├── Assets.car │ │ │ │ ├── Info.plist │ │ │ │ ├── KiwiTests-XCTest-AppTests │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── KiwiTests-XCTest.xctest │ │ │ │ ├── Assets.car │ │ │ │ ├── Info.plist │ │ │ │ ├── KiwiTests-XCTest │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ ├── libPods-KiwiTests-OCUnit-AppTests-Kiwi.a │ │ │ │ ├── libPods-KiwiTests-OCUnit-AppTests.a │ │ │ │ ├── libPods-KiwiTests-OCUnit-Kiwi.a │ │ │ │ ├── libPods-KiwiTests-OCUnit.a │ │ │ │ ├── libPods-KiwiTests-XCTest-AppTests-Kiwi.a │ │ │ │ ├── libPods-KiwiTests-XCTest-AppTests.a │ │ │ │ ├── libPods-KiwiTests-XCTest-Kiwi.a │ │ │ │ └── libPods-KiwiTests-XCTest.a │ │ ├── KiwiTests-OCUnit-AppTests │ │ │ ├── KiwiTests-OCUnit-AppTests-Info.plist │ │ │ ├── KiwiTests-OCUnit-AppTests-Prefix.pch │ │ │ ├── KiwiTests_OCUnit_AppTests.m │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── KiwiTests-OCUnit │ │ │ ├── KiwiTests-OCUnit-Info.plist │ │ │ ├── KiwiTests-OCUnit-Prefix.pch │ │ │ ├── KiwiTests_OCUnit.m │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── KiwiTests-TestHost │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── KiwiTests-TestHost-Info.plist │ │ │ ├── KiwiTests-TestHost-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ ├── KiwiTests-TestHostTests │ │ │ ├── KiwiTests-TestHostTests-Info.plist │ │ │ ├── KiwiTests_TestHostTests.m │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── KiwiTests-XCTest-AppTests │ │ │ ├── KiwiTests-XCTest-AppTests-Info.plist │ │ │ ├── KiwiTests-XCTest-AppTests-Prefix.pch │ │ │ ├── KiwiTests_XCTest_AppTests.m │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── KiwiTests-XCTest │ │ │ ├── KiwiTests-XCTest-Info.plist │ │ │ ├── KiwiTests-XCTest-Prefix.pch │ │ │ ├── KiwiTests_XCTest.m │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── KiwiTests.xcodeproj │ │ │ └── project.pbxproj │ │ ├── KiwiTests.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ │ └── xcschemes │ │ │ │ └── KiwiTests.xcscheme │ │ ├── Podfile │ │ ├── Podfile.lock │ │ ├── Pods │ │ │ ├── BuildHeaders │ │ │ │ └── Kiwi │ │ │ │ │ ├── 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 │ │ │ │ │ ├── KWMatchVerifier.h │ │ │ │ │ ├── KWMatcher.h │ │ │ │ │ ├── KWMatcherFactory.h │ │ │ │ │ ├── KWMatchers.h │ │ │ │ │ ├── KWMatching.h │ │ │ │ │ ├── KWMessagePattern.h │ │ │ │ │ ├── KWMessageSpying.h │ │ │ │ │ ├── KWMessageTracker.h │ │ │ │ │ ├── KWMock.h │ │ │ │ │ ├── KWNilMatcher.h │ │ │ │ │ ├── KWNull.h │ │ │ │ │ ├── KWObjCUtilities.h │ │ │ │ │ ├── KWPendingNode.h │ │ │ │ │ ├── KWProbe.h │ │ │ │ │ ├── KWProbePoller.h │ │ │ │ │ ├── KWRaiseMatcher.h │ │ │ │ │ ├── KWReceiveMatcher.h │ │ │ │ │ ├── KWRegisterMatchersNode.h │ │ │ │ │ ├── KWRegularExpressionPatternMatcher.h │ │ │ │ │ ├── KWReporting.h │ │ │ │ │ ├── KWRespondToSelectorMatcher.h │ │ │ │ │ ├── KWSpec.h │ │ │ │ │ ├── KWStringContainsMatcher.h │ │ │ │ │ ├── KWStringPrefixMatcher.h │ │ │ │ │ ├── KWStringUtilities.h │ │ │ │ │ ├── KWStub.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 │ │ │ │ │ └── SenTestSuite+KiwiAdditions.h │ │ │ ├── Headers │ │ │ │ └── Kiwi │ │ │ │ │ ├── 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 │ │ │ │ │ ├── KWMatchVerifier.h │ │ │ │ │ ├── KWMatcher.h │ │ │ │ │ ├── KWMatcherFactory.h │ │ │ │ │ ├── KWMatchers.h │ │ │ │ │ ├── KWMatching.h │ │ │ │ │ ├── KWMessagePattern.h │ │ │ │ │ ├── KWMessageSpying.h │ │ │ │ │ ├── KWMessageTracker.h │ │ │ │ │ ├── KWMock.h │ │ │ │ │ ├── KWNilMatcher.h │ │ │ │ │ ├── KWNull.h │ │ │ │ │ ├── KWObjCUtilities.h │ │ │ │ │ ├── KWPendingNode.h │ │ │ │ │ ├── KWProbe.h │ │ │ │ │ ├── KWProbePoller.h │ │ │ │ │ ├── KWRaiseMatcher.h │ │ │ │ │ ├── KWReceiveMatcher.h │ │ │ │ │ ├── KWRegisterMatchersNode.h │ │ │ │ │ ├── KWRegularExpressionPatternMatcher.h │ │ │ │ │ ├── KWReporting.h │ │ │ │ │ ├── KWRespondToSelectorMatcher.h │ │ │ │ │ ├── KWSpec.h │ │ │ │ │ ├── KWStringContainsMatcher.h │ │ │ │ │ ├── KWStringPrefixMatcher.h │ │ │ │ │ ├── KWStringUtilities.h │ │ │ │ │ ├── KWStub.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 │ │ │ │ │ └── SenTestSuite+KiwiAdditions.h │ │ │ ├── Kiwi │ │ │ │ ├── Classes │ │ │ │ │ ├── Core │ │ │ │ │ │ ├── KWAny.h │ │ │ │ │ │ ├── KWAny.m │ │ │ │ │ │ ├── KWBlock.h │ │ │ │ │ │ ├── KWBlock.m │ │ │ │ │ │ ├── KWCallSite.h │ │ │ │ │ │ ├── KWCallSite.m │ │ │ │ │ │ ├── KWCaptureSpy.h │ │ │ │ │ │ ├── KWCaptureSpy.m │ │ │ │ │ │ ├── KWCountType.h │ │ │ │ │ │ ├── KWDeviceInfo.h │ │ │ │ │ │ ├── KWDeviceInfo.m │ │ │ │ │ │ ├── KWExample.h │ │ │ │ │ │ ├── KWExample.m │ │ │ │ │ │ ├── KWExampleDelegate.h │ │ │ │ │ │ ├── KWExampleNodeVisitor.h │ │ │ │ │ │ ├── KWExampleSuite.h │ │ │ │ │ │ ├── KWExampleSuite.m │ │ │ │ │ │ ├── KWExampleSuiteBuilder.h │ │ │ │ │ │ ├── KWExampleSuiteBuilder.m │ │ │ │ │ │ ├── KWExpectationType.h │ │ │ │ │ │ ├── KWFailure.h │ │ │ │ │ │ ├── KWFailure.m │ │ │ │ │ │ ├── KWFormatter.h │ │ │ │ │ │ ├── KWFormatter.m │ │ │ │ │ │ ├── KWFutureObject.h │ │ │ │ │ │ ├── KWFutureObject.m │ │ │ │ │ │ ├── KWInvocationCapturer.h │ │ │ │ │ │ ├── KWInvocationCapturer.m │ │ │ │ │ │ ├── KWMatcher.h │ │ │ │ │ │ ├── KWMatcher.m │ │ │ │ │ │ ├── KWMatcherFactory.h │ │ │ │ │ │ ├── KWMatcherFactory.m │ │ │ │ │ │ ├── KWMatchers.h │ │ │ │ │ │ ├── KWMatchers.m │ │ │ │ │ │ ├── KWMatching.h │ │ │ │ │ │ ├── KWMessageSpying.h │ │ │ │ │ │ ├── KWMessageTracker.h │ │ │ │ │ │ ├── KWMessageTracker.m │ │ │ │ │ │ ├── KWNull.h │ │ │ │ │ │ ├── KWNull.m │ │ │ │ │ │ ├── KWObjCUtilities.h │ │ │ │ │ │ ├── KWObjCUtilities.m │ │ │ │ │ │ ├── KWProbe.h │ │ │ │ │ │ ├── KWProbePoller.h │ │ │ │ │ │ ├── KWProbePoller.m │ │ │ │ │ │ ├── KWReporting.h │ │ │ │ │ │ ├── KWSpec.h │ │ │ │ │ │ ├── KWSpec.m │ │ │ │ │ │ ├── KWStringUtilities.h │ │ │ │ │ │ ├── KWStringUtilities.m │ │ │ │ │ │ ├── KWValue.h │ │ │ │ │ │ ├── KWValue.m │ │ │ │ │ │ ├── KWWorkarounds.h │ │ │ │ │ │ ├── KWWorkarounds.m │ │ │ │ │ │ ├── Kiwi.h │ │ │ │ │ │ ├── KiwiBlockMacros.h │ │ │ │ │ │ ├── KiwiConfiguration.h │ │ │ │ │ │ ├── KiwiMacros.h │ │ │ │ │ │ ├── NSInvocation+KiwiAdditions.h │ │ │ │ │ │ ├── NSInvocation+KiwiAdditions.m │ │ │ │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ │ │ │ ├── NSInvocation+OCMAdditions.m │ │ │ │ │ │ ├── NSMethodSignature+KiwiAdditions.h │ │ │ │ │ │ ├── NSMethodSignature+KiwiAdditions.m │ │ │ │ │ │ ├── NSNumber+KiwiAdditions.h │ │ │ │ │ │ ├── NSNumber+KiwiAdditions.m │ │ │ │ │ │ ├── NSObject+KiwiSpyAdditions.h │ │ │ │ │ │ ├── NSObject+KiwiSpyAdditions.m │ │ │ │ │ │ ├── NSObject+KiwiVerifierAdditions.h │ │ │ │ │ │ ├── NSObject+KiwiVerifierAdditions.m │ │ │ │ │ │ ├── NSProxy+KiwiVerifierAdditions.h │ │ │ │ │ │ ├── NSProxy+KiwiVerifierAdditions.m │ │ │ │ │ │ ├── NSValue+KiwiAdditions.h │ │ │ │ │ │ └── NSValue+KiwiAdditions.m │ │ │ │ │ ├── Matchers │ │ │ │ │ │ ├── KWBeBetweenMatcher.h │ │ │ │ │ │ ├── KWBeBetweenMatcher.m │ │ │ │ │ │ ├── KWBeEmptyMatcher.h │ │ │ │ │ │ ├── KWBeEmptyMatcher.m │ │ │ │ │ │ ├── KWBeIdenticalToMatcher.h │ │ │ │ │ │ ├── KWBeIdenticalToMatcher.m │ │ │ │ │ │ ├── KWBeKindOfClassMatcher.h │ │ │ │ │ │ ├── KWBeKindOfClassMatcher.m │ │ │ │ │ │ ├── KWBeMemberOfClassMatcher.h │ │ │ │ │ │ ├── KWBeMemberOfClassMatcher.m │ │ │ │ │ │ ├── KWBeSubclassOfClassMatcher.h │ │ │ │ │ │ ├── KWBeSubclassOfClassMatcher.m │ │ │ │ │ │ ├── KWBeTrueMatcher.h │ │ │ │ │ │ ├── KWBeTrueMatcher.m │ │ │ │ │ │ ├── KWBeWithinMatcher.h │ │ │ │ │ │ ├── KWBeWithinMatcher.m │ │ │ │ │ │ ├── KWBeZeroMatcher.h │ │ │ │ │ │ ├── KWBeZeroMatcher.m │ │ │ │ │ │ ├── KWBlockRaiseMatcher.h │ │ │ │ │ │ ├── KWBlockRaiseMatcher.m │ │ │ │ │ │ ├── KWChangeMatcher.h │ │ │ │ │ │ ├── KWChangeMatcher.m │ │ │ │ │ │ ├── KWConformToProtocolMatcher.h │ │ │ │ │ │ ├── KWConformToProtocolMatcher.m │ │ │ │ │ │ ├── KWContainMatcher.h │ │ │ │ │ │ ├── KWContainMatcher.m │ │ │ │ │ │ ├── KWContainStringMatcher.h │ │ │ │ │ │ ├── KWContainStringMatcher.m │ │ │ │ │ │ ├── KWEqualMatcher.h │ │ │ │ │ │ ├── KWEqualMatcher.m │ │ │ │ │ │ ├── KWGenericMatchEvaluator.h │ │ │ │ │ │ ├── KWGenericMatchEvaluator.m │ │ │ │ │ │ ├── KWGenericMatcher.h │ │ │ │ │ │ ├── KWGenericMatcher.m │ │ │ │ │ │ ├── KWGenericMatchingAdditions.h │ │ │ │ │ │ ├── KWGenericMatchingAdditions.m │ │ │ │ │ │ ├── KWHaveMatcher.h │ │ │ │ │ │ ├── KWHaveMatcher.m │ │ │ │ │ │ ├── KWHaveValueMatcher.h │ │ │ │ │ │ ├── KWHaveValueMatcher.m │ │ │ │ │ │ ├── KWInequalityMatcher.h │ │ │ │ │ │ ├── KWInequalityMatcher.m │ │ │ │ │ │ ├── KWNilMatcher.h │ │ │ │ │ │ ├── KWNilMatcher.m │ │ │ │ │ │ ├── KWRaiseMatcher.h │ │ │ │ │ │ ├── KWRaiseMatcher.m │ │ │ │ │ │ ├── KWReceiveMatcher.h │ │ │ │ │ │ ├── KWReceiveMatcher.m │ │ │ │ │ │ ├── KWRegularExpressionPatternMatcher.h │ │ │ │ │ │ ├── KWRegularExpressionPatternMatcher.m │ │ │ │ │ │ ├── KWRespondToSelectorMatcher.h │ │ │ │ │ │ ├── KWRespondToSelectorMatcher.m │ │ │ │ │ │ ├── KWStringContainsMatcher.h │ │ │ │ │ │ ├── KWStringContainsMatcher.m │ │ │ │ │ │ ├── KWStringPrefixMatcher.h │ │ │ │ │ │ ├── KWStringPrefixMatcher.m │ │ │ │ │ │ ├── KWUserDefinedMatcher.h │ │ │ │ │ │ └── KWUserDefinedMatcher.m │ │ │ │ │ ├── Mocking │ │ │ │ │ │ ├── KWMock.h │ │ │ │ │ │ ├── KWMock.m │ │ │ │ │ │ ├── NSObject+KiwiMockAdditions.h │ │ │ │ │ │ └── NSObject+KiwiMockAdditions.m │ │ │ │ │ ├── Nodes │ │ │ │ │ │ ├── KWAfterAllNode.h │ │ │ │ │ │ ├── KWAfterAllNode.m │ │ │ │ │ │ ├── KWAfterEachNode.h │ │ │ │ │ │ ├── KWAfterEachNode.m │ │ │ │ │ │ ├── KWBeforeAllNode.h │ │ │ │ │ │ ├── KWBeforeAllNode.m │ │ │ │ │ │ ├── KWBeforeEachNode.h │ │ │ │ │ │ ├── KWBeforeEachNode.m │ │ │ │ │ │ ├── KWBlockNode.h │ │ │ │ │ │ ├── KWBlockNode.m │ │ │ │ │ │ ├── KWContextNode.h │ │ │ │ │ │ ├── KWContextNode.m │ │ │ │ │ │ ├── KWExampleNode.h │ │ │ │ │ │ ├── KWItNode.h │ │ │ │ │ │ ├── KWItNode.m │ │ │ │ │ │ ├── KWPendingNode.h │ │ │ │ │ │ ├── KWPendingNode.m │ │ │ │ │ │ ├── KWRegisterMatchersNode.h │ │ │ │ │ │ └── KWRegisterMatchersNode.m │ │ │ │ │ ├── Stubbing │ │ │ │ │ │ ├── NSObject+KiwiStubAdditions.h │ │ │ │ │ │ └── NSObject+KiwiStubAdditions.m │ │ │ │ │ └── Verifiers │ │ │ │ │ │ ├── KWAsyncVerifier.h │ │ │ │ │ │ ├── KWAsyncVerifier.m │ │ │ │ │ │ ├── KWExistVerifier.h │ │ │ │ │ │ ├── KWExistVerifier.m │ │ │ │ │ │ ├── KWMatchVerifier.h │ │ │ │ │ │ ├── KWMatchVerifier.m │ │ │ │ │ │ └── KWVerifying.h │ │ │ │ ├── License.txt │ │ │ │ ├── NonARC │ │ │ │ │ ├── KWIntercept.h │ │ │ │ │ ├── KWIntercept.m │ │ │ │ │ ├── KWMessagePattern.h │ │ │ │ │ ├── KWMessagePattern.m │ │ │ │ │ ├── KWStub.h │ │ │ │ │ ├── KWStub.m │ │ │ │ │ ├── KWSymbolicator.h │ │ │ │ │ └── KWSymbolicator.m │ │ │ │ ├── Readme.md │ │ │ │ └── SenTestingKit │ │ │ │ │ ├── SenTestSuite+KiwiAdditions.h │ │ │ │ │ └── SenTestSuite+KiwiAdditions.m │ │ │ ├── Manifest.lock │ │ │ ├── Pods-KiwiTests-OCUnit-AppTests-Kiwi-Private.xcconfig │ │ │ ├── Pods-KiwiTests-OCUnit-AppTests-Kiwi-dummy.m │ │ │ ├── Pods-KiwiTests-OCUnit-AppTests-Kiwi-prefix.pch │ │ │ ├── Pods-KiwiTests-OCUnit-AppTests-Kiwi.xcconfig │ │ │ ├── Pods-KiwiTests-OCUnit-AppTests-acknowledgements.markdown │ │ │ ├── Pods-KiwiTests-OCUnit-AppTests-acknowledgements.plist │ │ │ ├── Pods-KiwiTests-OCUnit-AppTests-dummy.m │ │ │ ├── Pods-KiwiTests-OCUnit-AppTests-environment.h │ │ │ ├── Pods-KiwiTests-OCUnit-AppTests-resources.sh │ │ │ ├── Pods-KiwiTests-OCUnit-AppTests.xcconfig │ │ │ ├── Pods-KiwiTests-OCUnit-Kiwi-Private.xcconfig │ │ │ ├── Pods-KiwiTests-OCUnit-Kiwi-dummy.m │ │ │ ├── Pods-KiwiTests-OCUnit-Kiwi-prefix.pch │ │ │ ├── Pods-KiwiTests-OCUnit-Kiwi.xcconfig │ │ │ ├── Pods-KiwiTests-OCUnit-acknowledgements.markdown │ │ │ ├── Pods-KiwiTests-OCUnit-acknowledgements.plist │ │ │ ├── Pods-KiwiTests-OCUnit-dummy.m │ │ │ ├── Pods-KiwiTests-OCUnit-environment.h │ │ │ ├── Pods-KiwiTests-OCUnit-resources.sh │ │ │ ├── Pods-KiwiTests-OCUnit.xcconfig │ │ │ ├── Pods-KiwiTests-XCTest-AppTests-Kiwi-Private.xcconfig │ │ │ ├── Pods-KiwiTests-XCTest-AppTests-Kiwi-dummy.m │ │ │ ├── Pods-KiwiTests-XCTest-AppTests-Kiwi-prefix.pch │ │ │ ├── Pods-KiwiTests-XCTest-AppTests-Kiwi.xcconfig │ │ │ ├── Pods-KiwiTests-XCTest-AppTests-acknowledgements.markdown │ │ │ ├── Pods-KiwiTests-XCTest-AppTests-acknowledgements.plist │ │ │ ├── Pods-KiwiTests-XCTest-AppTests-dummy.m │ │ │ ├── Pods-KiwiTests-XCTest-AppTests-environment.h │ │ │ ├── Pods-KiwiTests-XCTest-AppTests-resources.sh │ │ │ ├── Pods-KiwiTests-XCTest-AppTests.xcconfig │ │ │ ├── Pods-KiwiTests-XCTest-Kiwi-Private.xcconfig │ │ │ ├── Pods-KiwiTests-XCTest-Kiwi-dummy.m │ │ │ ├── Pods-KiwiTests-XCTest-Kiwi-prefix.pch │ │ │ ├── Pods-KiwiTests-XCTest-Kiwi.xcconfig │ │ │ ├── Pods-KiwiTests-XCTest-acknowledgements.markdown │ │ │ ├── Pods-KiwiTests-XCTest-acknowledgements.plist │ │ │ ├── Pods-KiwiTests-XCTest-dummy.m │ │ │ ├── Pods-KiwiTests-XCTest-environment.h │ │ │ ├── Pods-KiwiTests-XCTest-resources.sh │ │ │ ├── Pods-KiwiTests-XCTest.xcconfig │ │ │ └── Pods.xcodeproj │ │ │ │ └── project.pbxproj │ │ ├── TestCases.m │ │ └── build.sh │ ├── OSX-Application-Test-showBuildSettings.txt │ ├── OSX-Logic-Test-showBuildSettings.txt │ ├── ProjectWithOnlyATestTarget-showBuildSettings-build.txt │ ├── ProjectWithOnlyATestTarget-showBuildSettings-test.txt │ ├── ProjectWithOnlyATestTarget │ │ ├── ProjectWithOnlyATestTarget.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── ProjectWithOnlyATestTarget.xcscheme │ │ └── ProjectWithOnlyATestTarget │ │ │ ├── ProjectWithOnlyATestTarget-Info.plist │ │ │ ├── ProjectWithOnlyATestTarget-Prefix.pch │ │ │ ├── ProjectWithOnlyATestTarget.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── ProjectsWithDifferentSDKs-ProjectsWithDifferentSDKs-showBuildSettings.txt │ ├── ProjectsWithDifferentSDKs │ │ ├── OSXLibrary │ │ │ ├── OSXLibrary.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── OSXLibrary │ │ │ │ ├── OSXLibrary-Prefix.pch │ │ │ │ ├── OSXLibrary.h │ │ │ │ └── OSXLibrary.m │ │ │ └── OSXLibraryTests │ │ │ │ ├── OSXLibraryTests-Info.plist │ │ │ │ ├── OSXLibraryTests-Prefix.pch │ │ │ │ ├── OSXLibraryTests.h │ │ │ │ ├── OSXLibraryTests.m │ │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── ProjectsWithDifferentSDKs.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ │ └── xcschemes │ │ │ │ └── ProjectsWithDifferentSDKs.xcscheme │ │ └── iOSLibrary │ │ │ ├── iOSLibrary.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── iOSLibrary │ │ │ ├── iOSLibrary-Prefix.pch │ │ │ ├── iOSLibrary.h │ │ │ └── iOSLibrary.m │ │ │ └── iOSLibraryTests │ │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── iOSLibraryTests-Info.plist │ │ │ ├── iOSLibraryTests-Prefix.pch │ │ │ ├── iOSLibraryTests.h │ │ │ └── iOSLibraryTests.m │ ├── SchemeInWorkspaceContainer │ │ ├── SchemeInWorkspaceContainer.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ ├── WorkspaceSettings.xcsettings │ │ │ │ └── xcschemes │ │ │ │ └── SomeLibrary.xcscheme │ │ └── SomeLibrary │ │ │ ├── SomeLibrary.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── SomeLibrary │ │ │ ├── SomeLibrary-Prefix.pch │ │ │ ├── SomeLibrary.h │ │ │ └── SomeLibrary.m │ │ │ └── SomeLibraryTests │ │ │ ├── SomeLibraryTests-Info.plist │ │ │ ├── SomeLibraryTests.h │ │ │ ├── SomeLibraryTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── TargetNamesWithSpaces-showBuildSettings.txt │ ├── TestGetAvailableSDKsAndAliasesOutput.txt │ ├── TestMultipleProjectsInDirectory │ │ ├── TestMultipleProjectsInDirectoryProject1.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── TestMultipleProjectsInDirectoryProject1 │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── TestMultipleProjectsInDirectoryProject1-Info.plist │ │ │ ├── TestMultipleProjectsInDirectoryProject1-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ ├── TestMultipleProjectsInDirectoryProject2.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── TestMultipleProjectsInDirectoryProject2 │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── TestMultipleProjectsInDirectoryProject2-Info.plist │ │ │ ├── TestMultipleProjectsInDirectoryProject2-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ └── xctool │ ├── TestProject-App-OSX-showBuildSettings.txt │ ├── TestProject-App-OSX │ │ ├── .gitignore │ │ ├── Build │ │ │ └── Products │ │ │ │ └── Debug │ │ │ │ ├── TestProject-App-OSX.app │ │ │ │ └── Contents │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── MacOS │ │ │ │ │ └── TestProject-App-OSX │ │ │ │ │ ├── PkgInfo │ │ │ │ │ └── Resources │ │ │ │ │ └── en.lproj │ │ │ │ │ ├── Credits.rtf │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ └── MainMenu.nib │ │ │ │ └── TestProject-App-OSXTests.xctest │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── TestProject-App-OSXTests │ │ │ │ └── Resources │ │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── TestProject-App-OSX.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestProject-App-OSX.xcscheme │ │ ├── TestProject-App-OSX │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Something.h │ │ │ ├── Something.m │ │ │ ├── TestProject-App-OSX-Info.plist │ │ │ ├── TestProject-App-OSX-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ ├── InfoPlist.strings │ │ │ │ └── MainMenu.xib │ │ │ └── main.m │ │ ├── TestProject-App-OSXTests │ │ │ ├── TestProject-App-OSXTests-Info.plist │ │ │ ├── TestProject_App_OSXTests.h │ │ │ ├── TestProject_App_OSXTests.m │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ └── build.sh │ ├── TestProject-App-XCTest-OSX │ │ ├── TestProject-App-XCTest-OSX.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── TestProject-App-XCTest-OSX │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── TestProject-App-XCTest-OSX-Info.plist │ │ │ ├── TestProject-App-XCTest-OSX-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ ├── Credits.rtf │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ └── TestProject-App-XCTest-OSXTests │ │ │ ├── TestProject-App-XCTest-OSXTests-Info.plist │ │ │ ├── TestProject_App_XCTest_OSXTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── TestProject-Assertion-SenTestingKit_Assertion-showBuildSettings.txt │ ├── TestProject-Assertion-XCTest_Assertion-showBuildSettings.txt │ ├── TestProject-Assertion │ │ ├── TestProject-Assertion.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestProject-Assertion.xcscheme │ │ ├── TestProject-Assertion │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── TestProject-Assertion-Info.plist │ │ │ ├── TestProject-Assertion-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ └── TestProject-AssertionTests │ │ │ ├── SenTestingKit_Assertion-Info.plist │ │ │ ├── SenTestingKit_Assertion.m │ │ │ ├── XCTest_Assertion-Info.plist │ │ │ ├── XCTest_Assertion.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── TestProject-Library-64bit │ │ ├── TestProject-Library-32And64bitTests-Info.plist │ │ ├── TestProject-Library-64bit.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── TestProject-Library-32And64bitTests.xcscheme │ │ │ │ └── TestProject-Library-64bit.xcscheme │ │ ├── TestProject-Library-64bit │ │ │ ├── TestProjectLibrary64bit.h │ │ │ └── TestProjectLibrary64bit.m │ │ └── TestProject-Library-64bitTests │ │ │ ├── Info.plist │ │ │ ├── TestProjectLibrary64bitTests.h │ │ │ └── TestProjectLibrary64bitTests.m │ ├── TestProject-Library-OSX │ │ ├── TestProject-Library-OSX.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── TestProject-Library-OSX-With-Scripts.xcscheme │ │ │ │ └── TestProject-Library-OSX.xcscheme │ │ ├── TestProject-Library-OSX │ │ │ ├── TestProject-Library-OSX-Prefix.pch │ │ │ ├── TestProject_Library_OSX.h │ │ │ └── TestProject_Library_OSX.m │ │ └── TestProject-Library-OSXTests │ │ │ ├── TestProject-Library-OSXTests-Info.plist │ │ │ ├── TestProject_Library_OSXTests.h │ │ │ ├── TestProject_Library_OSXTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── TestProject-Library-TestProject-Library-showBuildSettings.txt │ ├── TestProject-Library-TestProject-LibraryTests-build-derived-data.txt │ ├── TestProject-Library-TestProject-LibraryTests-build-objc++.txt │ ├── TestProject-Library-TestProject-LibraryTests-build.txt │ ├── TestProject-Library-TestProject-LibraryTests-run-test-results-listtestonly.txt │ ├── TestProject-Library-TestProject-LibraryTests-showBuildSettings-5.0.txt │ ├── TestProject-Library-TestProject-LibraryTests-showBuildSettings-iphoneos.txt │ ├── TestProject-Library-TestProject-LibraryTests-showBuildSettings.txt │ ├── TestProject-Library-TestProject-LibraryTests-test-results-notests.txt │ ├── TestProject-Library-TestProject-LibraryTests-test-results.txt │ ├── TestProject-Library-TestProject-Xcode-51.txt │ ├── TestProject-Library-TestProject-Xcode-5A11314m.txt │ ├── TestProject-Library-WithDifferentConfigurations │ │ ├── TestProject-Library.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestProject-Library.xcscheme │ │ ├── TestProject-Library │ │ │ ├── TestProject-Library-Prefix.pch │ │ │ ├── TestProject_Library.h │ │ │ └── TestProject_Library.m │ │ └── TestProject-LibraryTests │ │ │ ├── DisabledTests.h │ │ │ ├── DisabledTests.m │ │ │ ├── OtherTests.h │ │ │ ├── OtherTests.m │ │ │ ├── SomeTests.h │ │ │ ├── SomeTests.m │ │ │ ├── TestProject-LibraryTests-Info.plist │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── TestProject-Library-XCTest-Custom │ │ ├── TestProject-Library-XCTest-Custom.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestProject-Library-XCTest-Custom.xcscheme │ │ ├── TestProject-Library-XCTest-Custom │ │ │ ├── TestProject_Library_XCTest_Custom.h │ │ │ └── TestProject_Library_XCTest_Custom.m │ │ └── TestProject-Library-XCTest-CustomTests │ │ │ ├── Info.plist │ │ │ └── TestProject_Library_XCTest_CustomTests.m │ ├── TestProject-Library-XCTest-OSX-showBuildSettings.txt │ ├── TestProject-Library-XCTest-OSX │ │ ├── TestProject-Library-XCTest-OSX.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestProject-Library-XCTest-OSX.xcscheme │ │ ├── TestProject-Library-XCTest-OSX │ │ │ ├── TestProject-Library-XCTest-OSX-Prefix.pch │ │ │ ├── TestProject_Library_XCTest_OSX.h │ │ │ └── TestProject_Library_XCTest_OSX.m │ │ └── TestProject-Library-XCTest-OSXTests │ │ │ ├── TestProject-Library-XCTest-OSXTests-Info.plist │ │ │ ├── TestProject_Library_XCTest_OSXTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── TestProject-Library-XCTest-iOS-TestProject-Library-XCTest-iOSTests-showBuildSettings-iphoneos.txt │ ├── TestProject-Library-XCTest-iOS-TestProject-Library-XCTest-iOSTests-showBuildSettings-iphonesimulator.txt │ ├── TestProject-Library-XCTest-iOS-showBuildSettings.txt │ ├── TestProject-Library-XCTest-iOS │ │ ├── TestProject-Library-XCTest-iOS.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestProject-Library-XCTest-iOS.xcscheme │ │ ├── TestProject-Library-XCTest-iOS │ │ │ ├── TestProject-Library-XCTest-iOS-Prefix.pch │ │ │ ├── TestProject_Library_XCTest_iOS.h │ │ │ └── TestProject_Library_XCTest_iOS.m │ │ └── TestProject-Library-XCTest-iOSTests │ │ │ ├── DisabledTests.m │ │ │ ├── OtherTests.m │ │ │ ├── SomeTests.m │ │ │ ├── TestProject-Library-XCTest-iOSTests-Info.plist │ │ │ ├── TimeoutTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── TestProject-Library-showBuildSettings.txt │ ├── TestProject-Library │ │ ├── TestProject-Library.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── Target Name With Spaces.xcscheme │ │ │ │ └── TestProject-Library.xcscheme │ │ ├── TestProject-Library │ │ │ ├── TestProject-Library-Prefix.pch │ │ │ ├── TestProject_Library.h │ │ │ └── TestProject_Library.m │ │ ├── TestProject-LibraryTests │ │ │ ├── DisabledTests.h │ │ │ ├── DisabledTests.m │ │ │ ├── OtherTests.h │ │ │ ├── OtherTests.m │ │ │ ├── SomeTests.h │ │ │ ├── SomeTests.m │ │ │ ├── TestProject-LibraryTests-Info.plist │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ └── TestProject-Target-Name-With-Spaces-Info.plist │ ├── TestProject-RecursiveDefinitions │ │ ├── Core │ │ │ ├── Core.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ ├── Core │ │ │ │ ├── Core.h │ │ │ │ └── Info.plist │ │ │ └── CoreTests │ │ │ │ ├── CoreTests.swift │ │ │ │ └── Info.plist │ │ ├── MainProject │ │ │ ├── MainProject.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── MainProject.xcscheme │ │ │ ├── MainProject │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Assets.xcassets │ │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Base.lproj │ │ │ │ │ └── MainMenu.xib │ │ │ │ ├── Info.plist │ │ │ │ ├── MainProject.entitlements │ │ │ │ └── main.m │ │ │ └── MainProjectTests │ │ │ │ ├── Info.plist │ │ │ │ └── MainProjectTests.m │ │ ├── TestingCore │ │ │ ├── TestingCore.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── TestingCore │ │ │ │ ├── Info.plist │ │ │ │ └── TestingCore.h │ │ │ └── TestingCoreTests │ │ │ │ ├── Info.plist │ │ │ │ └── TestingCoreTests.swift │ │ └── Untitled.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ ├── TestProject-RecursiveProjectsAndSchemes │ │ ├── InternalProjectLibraryA │ │ │ ├── InternalProjectLibraryA.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── InternalProjectLibraryA.xcscheme │ │ │ ├── InternalProjectLibraryA │ │ │ │ ├── InternalProjectLibraryA.h │ │ │ │ └── InternalProjectLibraryA.m │ │ │ └── InternalProjectLibraryATests │ │ │ │ └── Info.plist │ │ ├── InternalProjectLibraryC │ │ │ ├── HideProjectFolder │ │ │ │ └── WhyNotMore │ │ │ │ │ └── InternalProjectLibraryC.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── InternalProjectLibraryC.xcscheme │ │ │ │ │ └── InternalProjectLibraryTests.xcscheme │ │ │ ├── InternalProjectLibraryC │ │ │ │ ├── InternalProjectLibraryC.h │ │ │ │ └── InternalProjectLibraryC.m │ │ │ └── InternalProjectLibraryCTests │ │ │ │ └── Info.plist │ │ ├── TestProject-RecursiveProjectsAndSchemes.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── TestProject-RecursiveProjectsAndSchemes-InternalTests.xcscheme │ │ │ │ └── TestProject-RecursiveProjectsAndSchemes.xcscheme │ │ ├── TestProject-RecursiveProjectsAndSchemes.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── WorkspaceInternalProjectLibraryTests.xcscheme │ │ ├── TestProject-RecursiveProjectsAndSchemes │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.xib │ │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── OtherProjects │ │ │ │ └── InternalProjectLibraryB │ │ │ │ │ ├── InternalProjectLibraryB.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── InternalProjectLibraryB.xcscheme │ │ │ │ │ ├── InternalProjectLibraryB │ │ │ │ │ ├── InternalProjectLibraryB.h │ │ │ │ │ └── InternalProjectLibraryB.m │ │ │ │ │ └── InternalProjectLibraryBTests │ │ │ │ │ └── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ │ └── TestProject-RecursiveProjectsAndSchemesTests │ │ │ ├── Info.plist │ │ │ └── TestProject_RecursiveProjectsAndSchemesTests.m │ ├── TestProject-TVApp-TestProject-TVApp-showBuildSettings.txt │ ├── TestProject-TVApp-TestProject-TVAppTests-showBuildSettings.txt │ ├── TestProject-TVApp │ │ ├── TestProject-TVApp.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ ├── TestProject-TVApp │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ │ │ ├── App Icon - Large.imagestack │ │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── App Icon - Small.imagestack │ │ │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ ├── Contents.json │ │ │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ │ │ └── Contents.json │ │ │ │ │ ├── Contents.json │ │ │ │ │ └── Top Shelf Image.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ │ └── TestProject-TVAppTests │ │ │ ├── Info.plist │ │ │ └── TestProject_TVAppTests.m │ ├── TestProject-TVFramework-TestProject-TVFramework-showBuildSettings.txt │ ├── TestProject-TVFramework-TestProject-TVFrameworkTests-showBuildSettings.txt │ ├── TestProject-TVFramework-TestProject-TVFrameworkTests-test-results.txt │ ├── TestProject-TVFramework │ │ ├── TestProject-TVFramework.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestProject-TVFramework.xcscheme │ │ ├── TestProject-TVFramework │ │ │ ├── Info.plist │ │ │ ├── TestProject-TVFramework.h │ │ │ ├── TestProject-TVFrameworkCustomClass.h │ │ │ └── TestProject-TVFrameworkCustomClass.m │ │ └── TestProject-TVFrameworkTests │ │ │ ├── Info.plist │ │ │ └── TestProject_TVFrameworkTests.m │ ├── TestProject-UITests │ │ ├── Build │ │ │ ├── Intermediates │ │ │ │ ├── TestProject-UITests.build │ │ │ │ │ └── Debug-iphonesimulator │ │ │ │ │ │ ├── TestProject-UITests.build │ │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ │ ├── LaunchScreen-SBPartialInfo.plist │ │ │ │ │ │ │ ├── LaunchScreen.storyboardc │ │ │ │ │ │ │ │ ├── 01J-lp-oVM-view-Ze5-6b-2t3.nib │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── UIViewController-01J-lp-oVM.nib │ │ │ │ │ │ │ ├── Main-SBPartialInfo.plist │ │ │ │ │ │ │ └── Main.storyboardc │ │ │ │ │ │ │ │ ├── BYZ-38-t0r-view-8bC-Xf-vdC.nib │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ └── UIViewController-BYZ-38-t0r.nib │ │ │ │ │ │ ├── DerivedSources │ │ │ │ │ │ │ ├── Entitlements-Simulated.plist │ │ │ │ │ │ │ └── Entitlements.plist │ │ │ │ │ │ ├── Objects-normal │ │ │ │ │ │ │ └── x86_64 │ │ │ │ │ │ │ │ ├── AppDelegate.d │ │ │ │ │ │ │ │ ├── AppDelegate.dia │ │ │ │ │ │ │ │ ├── AppDelegate.o │ │ │ │ │ │ │ │ ├── TestProject-UITests.LinkFileList │ │ │ │ │ │ │ │ ├── TestProject-UITests_dependency_info.dat │ │ │ │ │ │ │ │ ├── ViewController.d │ │ │ │ │ │ │ │ ├── ViewController.dia │ │ │ │ │ │ │ │ ├── ViewController.o │ │ │ │ │ │ │ │ ├── main.d │ │ │ │ │ │ │ │ ├── main.dia │ │ │ │ │ │ │ │ └── main.o │ │ │ │ │ │ ├── TestProject-UITests-all-non-framework-target-headers.hmap │ │ │ │ │ │ ├── TestProject-UITests-all-target-headers.hmap │ │ │ │ │ │ ├── TestProject-UITests-generated-files.hmap │ │ │ │ │ │ ├── TestProject-UITests-own-target-headers.hmap │ │ │ │ │ │ ├── TestProject-UITests-project-headers.hmap │ │ │ │ │ │ ├── TestProject-UITests.app-Simulated.xcent │ │ │ │ │ │ ├── TestProject-UITests.app.xcent │ │ │ │ │ │ ├── TestProject-UITests.hmap │ │ │ │ │ │ ├── all-product-headers.yaml │ │ │ │ │ │ ├── assetcatalog_dependencies │ │ │ │ │ │ └── assetcatalog_generated_info.plist │ │ │ │ │ │ └── TestProject-UITestsUITests.build │ │ │ │ │ │ ├── DerivedSources │ │ │ │ │ │ ├── Entitlements-Simulated.plist │ │ │ │ │ │ └── Entitlements.plist │ │ │ │ │ │ ├── Objects-normal │ │ │ │ │ │ └── x86_64 │ │ │ │ │ │ │ ├── TestProject-UITestsUITests.LinkFileList │ │ │ │ │ │ │ ├── TestProject-UITestsUITests_dependency_info.dat │ │ │ │ │ │ │ ├── TestProject_UITestsUITests.d │ │ │ │ │ │ │ ├── TestProject_UITestsUITests.dia │ │ │ │ │ │ │ └── TestProject_UITestsUITests.o │ │ │ │ │ │ ├── ProductTypeInfoPlistAdditions.plist │ │ │ │ │ │ ├── TestProject-UITestsUITests-all-non-framework-target-headers.hmap │ │ │ │ │ │ ├── TestProject-UITestsUITests-all-target-headers.hmap │ │ │ │ │ │ ├── TestProject-UITestsUITests-generated-files.hmap │ │ │ │ │ │ ├── TestProject-UITestsUITests-own-target-headers.hmap │ │ │ │ │ │ ├── TestProject-UITestsUITests-project-headers.hmap │ │ │ │ │ │ ├── TestProject-UITestsUITests.hmap │ │ │ │ │ │ ├── TestProject-UITestsUITests.xctest-Simulated.xcent │ │ │ │ │ │ ├── TestProject-UITestsUITests.xctest.xcent │ │ │ │ │ │ └── all-product-headers.yaml │ │ │ │ └── XCBuildData │ │ │ │ │ ├── 316d59681c75046506ae1c6f9770a76f-desc.xcbuild │ │ │ │ │ ├── 316d59681c75046506ae1c6f9770a76f-manifest.xcbuild │ │ │ │ │ ├── 61ad00148fa7939f3d51d0de0b506c08-desc.xcbuild │ │ │ │ │ ├── 61ad00148fa7939f3d51d0de0b506c08-manifest.xcbuild │ │ │ │ │ ├── 6b73642b17452da5539b0d9bb9478ab5-desc.xcbuild │ │ │ │ │ ├── 6b73642b17452da5539b0d9bb9478ab5-manifest.xcbuild │ │ │ │ │ ├── 817ce6a3b2678cdb7cc122ddd76d8ff7-desc.xcbuild │ │ │ │ │ ├── 817ce6a3b2678cdb7cc122ddd76d8ff7-manifest.xcbuild │ │ │ │ │ ├── BuildDescriptionCacheIndex-04367476d1978193bf9c54e5b8ed2046 │ │ │ │ │ ├── PIFCache │ │ │ │ │ ├── project │ │ │ │ │ │ └── PROJECT@v8_mod=1558150478_hash=0572f51875b53e6f370ba165b254e108-json │ │ │ │ │ ├── target │ │ │ │ │ │ ├── TARGET@v8_hash=B06B36CBB882C73E7DC13D24B8C556C5-json │ │ │ │ │ │ └── TARGET@v8_hash=C6EA4451A24584E83F9827F88574D0A1-json │ │ │ │ │ └── workspace │ │ │ │ │ │ └── WORKSPACE@v8_mod=1558150478_hash=04367476d1978193bf9c54e5b8ed2046_subobjects=5DB5E24F4D4697F3740A0A85DD9EE005-json │ │ │ │ │ └── build.db │ │ │ └── Products │ │ │ │ ├── Debug-iphonesimulator │ │ │ │ ├── TestProject-UITests.app │ │ │ │ │ ├── Base.lproj │ │ │ │ │ │ ├── LaunchScreen.storyboardc │ │ │ │ │ │ │ ├── 01J-lp-oVM-view-Ze5-6b-2t3.nib │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── UIViewController-01J-lp-oVM.nib │ │ │ │ │ │ └── Main.storyboardc │ │ │ │ │ │ │ ├── BYZ-38-t0r-view-8bC-Xf-vdC.nib │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ └── UIViewController-BYZ-38-t0r.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── PkgInfo │ │ │ │ │ ├── TestProject-UITests │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ └── TestProject-UITestsUITests-Runner.app │ │ │ │ │ ├── Frameworks │ │ │ │ │ ├── XCTAutomationSupport.framework │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── XCTAutomationSupport │ │ │ │ │ │ ├── XPCServices │ │ │ │ │ │ │ └── LogArchiveCollector.xpc │ │ │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ │ │ ├── LogArchiveCollector │ │ │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ │ │ └── version.plist │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ └── version.plist │ │ │ │ │ └── XCTest.framework │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── XCTest │ │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ │ └── version.plist │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── PkgInfo │ │ │ │ │ ├── PlugIns │ │ │ │ │ └── TestProject-UITestsUITests.xctest │ │ │ │ │ │ ├── Info.plist │ │ │ │ │ │ ├── TestProject-UITestsUITests │ │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ ├── TestProject-UITestsUITests-Runner │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── TestProject-UITests_iphonesimulator12.2-x86_64.xctestrun │ │ ├── TestProject-UITests.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestProject-UITests.xcscheme │ │ ├── TestProject-UITests │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.storyboard │ │ │ │ └── Main.storyboard │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ │ ├── TestProject-UITestsUITests │ │ │ ├── Info.plist │ │ │ └── TestProject_UITestsUITests.m │ │ └── build.sh │ ├── TestProject-WithNonExistingTargetInScheme-TestProject-WithNonExistingTargetInSchemeTests-showBuildSettings.txt │ ├── TestProject-WithNonExistingTargetInScheme-showBuildSettings-run-tests-output.txt │ ├── TestProject-WithNonExistingTargetInScheme-showBuildSettings.txt │ ├── TestProject-WithNonExistingTargetInScheme │ │ ├── TestProject-WithNonExistingTargetInScheme.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestProject-WithNonExistingTargetInScheme.xcscheme │ │ ├── TestProject-WithNonExistingTargetInScheme │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ ├── LaunchScreen.xib │ │ │ │ └── Main.storyboard │ │ │ ├── Images.xcassets │ │ │ │ └── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ └── main.m │ │ └── TestProject-WithNonExistingTargetInSchemeTests │ │ │ ├── Info.plist │ │ │ └── TestProject_WithNonExistingTargetInSchemeTests.m │ ├── TestProject │ │ ├── TestProject.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── TestProject.xcscheme │ │ │ │ ├── TestProjectApplicationTests.xcscheme │ │ │ │ ├── TestProjectApplicationTestsThatFail.xcscheme │ │ │ │ ├── TestProjectApplicationTestsWithSomeDisabled.xcscheme │ │ │ │ ├── TestProjectLogicTestsThatFail.xcscheme │ │ │ │ └── TestProjectLogicTestsThatPass.xcscheme │ │ ├── TestProject │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── TestProject-Info.plist │ │ │ ├── TestProject-Prefix.pch │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ ├── TestProjectApplicationTests │ │ │ ├── TestProjectApplicationTests-Info.plist │ │ │ ├── TestProjectApplicationTests.h │ │ │ ├── TestProjectApplicationTests.m │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── TestProjectApplicationTestsThatFail │ │ │ ├── TestProjectApplicationTestsThatFail-Info.plist │ │ │ ├── TestProjectApplicationTestsThatFail-Prefix.pch │ │ │ ├── TestProjectApplicationTestsThatFail.h │ │ │ ├── TestProjectApplicationTestsThatFail.m │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── TestProjectApplicationTestsWithSomeDisabled │ │ │ ├── TestProjectApplicationTestsWithSomeDisabled-Info.plist │ │ │ ├── TestProjectApplicationTestsWithSomeDisabled-Prefix.pch │ │ │ ├── TestProjectApplicationTestsWithSomeDisabled.h │ │ │ ├── TestProjectApplicationTestsWithSomeDisabled.m │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── TestProjectLogicTestsThatFail │ │ │ ├── TestProjectLogicTestsThatFail-Info.plist │ │ │ ├── TestProjectLogicTestsThatFail-Prefix.pch │ │ │ ├── TestProjectLogicTestsThatFail.h │ │ │ ├── TestProjectLogicTestsThatFail.m │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ └── TestProjectLogicTestsThatPass │ │ │ ├── TestProjectLogicTestsThatPass-Info.plist │ │ │ ├── TestProjectLogicTestsThatPass-Prefix.pch │ │ │ ├── TestProjectLogicTestsThatPass.h │ │ │ ├── TestProjectLogicTestsThatPass.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── TestProject64bit │ │ ├── TestProject64bit.app │ │ │ ├── Base.lproj │ │ │ │ ├── Main_iPad.storyboardc │ │ │ │ │ ├── BYZ-38-t0r-view-8bC-Xf-vdC.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── UIViewController-BYZ-38-t0r.nib │ │ │ │ └── Main_iPhone.storyboardc │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── UIViewController-vXZ-lx-hvc.nib │ │ │ │ │ └── vXZ-lx-hvc-view-kh9-bI-dsS.nib │ │ │ ├── Info.plist │ │ │ ├── LaunchImage-700-568h@2x.png │ │ │ ├── PkgInfo │ │ │ ├── TestProject64bit │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── TestProject64bit.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestProject64bit.xcscheme │ │ ├── TestProject64bit │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ ├── Main_iPad.storyboard │ │ │ │ └── Main_iPhone.storyboard │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── LaunchImage.launchimage │ │ │ │ │ └── Contents.json │ │ │ ├── TestProject64bit-Info.plist │ │ │ ├── TestProject64bit-Prefix.pch │ │ │ ├── ViewController.h │ │ │ ├── ViewController.m │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ └── TestProject64bitTests │ │ │ ├── TestProject64bitTests-Info.plist │ │ │ ├── TestProject64bitTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── TestProjectWithSchemeThatReferencesNonExistentTestTarget-TestProject-Library-showBuildSettingsError.txt │ ├── TestProjectWithSchemeThatReferencesNonExistentTestTarget-showBuildSettings.txt │ ├── TestProjectWithSchemeThatReferencesNonExistentTestTarget │ │ ├── TestProject-Library.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ └── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestProject-Library.xcscheme │ │ └── TestProject-Library │ │ │ ├── TestProject-Library-Prefix.pch │ │ │ ├── TestProject_Library.h │ │ │ └── TestProject_Library.m │ ├── TestThatThrowsExceptionOnStart │ │ ├── .gitignore │ │ ├── Build │ │ │ └── Products │ │ │ │ └── Debug │ │ │ │ └── TestThatThrowsExceptionOnStart.xctest │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── TestThatThrowsExceptionOnStart │ │ │ │ └── Resources │ │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── TestThatThrowsExceptionOnStart-showBuildSettings.txt │ │ ├── TestThatThrowsExceptionOnStart.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestThatThrowsExceptionOnStart.xcscheme │ │ ├── TestThatThrowsExceptionOnStart │ │ │ ├── TestThatThrowsExceptionOnStart-Info.plist │ │ │ ├── TestThatThrowsExceptionOnStart-Prefix.pch │ │ │ ├── TestThatThrowsExceptionOnStart.m │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ └── build.sh │ ├── TestWorkspace-Library-TestProject-Library-showBuildSettings.txt │ ├── TestWorkspace-Library │ │ ├── TestProject-Library │ │ │ ├── TestProject-Library.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ └── xcshareddata │ │ │ │ │ └── xcschemes │ │ │ │ │ └── TestProject-Library.xcscheme │ │ │ ├── TestProject-Library │ │ │ │ ├── TestProject-Library-Prefix.pch │ │ │ │ ├── TestProject_Library.h │ │ │ │ └── TestProject_Library.m │ │ │ ├── TestProject-LibraryTests │ │ │ │ ├── TestProject-LibraryTests-Info.plist │ │ │ │ ├── TestProject_LibraryTests.h │ │ │ │ ├── TestProject_LibraryTests.m │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ ├── TestProject-LibraryTests2 │ │ │ │ ├── TestProject-LibraryTests2-Info.plist │ │ │ │ ├── TestProject-LibraryTests2-Prefix.pch │ │ │ │ ├── TestProject_LibraryTests2.h │ │ │ │ ├── TestProject_LibraryTests2.m │ │ │ │ └── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ ├── TestProject-OtherLib │ │ │ │ ├── TestProject-OtherLib-Prefix.pch │ │ │ │ ├── TestProject_OtherLib.h │ │ │ │ └── TestProject_OtherLib.m │ │ │ └── TestProject-TestHost │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── Default-568h@2x.png │ │ │ │ ├── Default.png │ │ │ │ ├── Default@2x.png │ │ │ │ ├── TestProject-TestHost-Info.plist │ │ │ │ ├── TestProject-TestHost-Prefix.pch │ │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ │ └── main.m │ │ └── TestWorkspace-Library.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ └── WorkspaceSettings.xcsettings │ ├── TestsThatCrash │ │ ├── CrashOnStaticInitExit │ │ │ ├── CrashOnStaticInitExit-Prefix.pch │ │ │ ├── CrashOnStaticInitExit.h │ │ │ └── CrashOnStaticInitExit.m │ │ ├── CrashOnStaticInitExitTests │ │ │ ├── CrashOnStaticInitExitTests-Info.plist │ │ │ ├── CrashOnStaticInitExitTests.h │ │ │ ├── CrashOnStaticInitExitTests.mm │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── TestsThatCrash.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── CrashOnStaticInitExit.xcscheme │ │ │ │ └── TestsThatCrash.xcscheme │ │ ├── TestsThatCrash │ │ │ ├── TestsThatCrash-Prefix.pch │ │ │ ├── TestsThatCrash.h │ │ │ └── TestsThatCrash.m │ │ └── TestsThatCrashTests │ │ │ ├── TestsThatCrashTests-Info.plist │ │ │ ├── TestsThatCrashTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── TestsWithArgAndEnvSettingsInRunAction-TestsWithArgAndEnvSettings-TestsWithArgAndEnvSettingsTests-showBuildSettings.txt │ ├── TestsWithArgAndEnvSettingsInRunAction-TestsWithArgAndEnvSettings-showBuildSettings.txt │ ├── TestsWithArgAndEnvSettingsInRunAction │ │ ├── TestsWithArgAndEnvSettings.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestsWithArgAndEnvSettings.xcscheme │ │ ├── TestsWithArgAndEnvSettings │ │ │ ├── TestsWithArgAndEnvSettings-Prefix.pch │ │ │ ├── TestsWithArgAndEnvSettings.h │ │ │ └── TestsWithArgAndEnvSettings.m │ │ └── TestsWithArgAndEnvSettingsTests │ │ │ ├── TestsWithArgAndEnvSettingsTests-Info.plist │ │ │ ├── TestsWithArgAndEnvSettingsTests.h │ │ │ ├── TestsWithArgAndEnvSettingsTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── TestsWithArgAndEnvSettingsInTestAction │ │ ├── TestsWithArgAndEnvSettings.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestsWithArgAndEnvSettings.xcscheme │ │ ├── TestsWithArgAndEnvSettings │ │ │ ├── TestsWithArgAndEnvSettings-Prefix.pch │ │ │ ├── TestsWithArgAndEnvSettings.h │ │ │ └── TestsWithArgAndEnvSettings.m │ │ └── TestsWithArgAndEnvSettingsTests │ │ │ ├── TestsWithArgAndEnvSettingsTests-Info.plist │ │ │ ├── TestsWithArgAndEnvSettingsTests.h │ │ │ ├── TestsWithArgAndEnvSettingsTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── TestsWithArgAndEnvSettingsWithMacroExpansion │ │ ├── TestsWithArgAndEnvSettings.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── WorkspaceSettings.xcsettings │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── TestsWithArgAndEnvSettings.xcscheme │ │ ├── TestsWithArgAndEnvSettings │ │ │ ├── TestsWithArgAndEnvSettings-Prefix.pch │ │ │ ├── TestsWithArgAndEnvSettings.h │ │ │ └── TestsWithArgAndEnvSettings.m │ │ └── TestsWithArgAndEnvSettingsTests │ │ │ ├── TestsWithArgAndEnvSettingsTests-Info.plist │ │ │ ├── TestsWithArgAndEnvSettingsTests.h │ │ │ ├── TestsWithArgAndEnvSettingsTests.m │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── WorkspacePathTest │ │ ├── NestedDir │ │ │ ├── SomeProject │ │ │ │ ├── SomeProject.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ └── xcshareddata │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── SomeProject.xcscheme │ │ │ │ └── SomeProject │ │ │ │ │ ├── SomeProject-Prefix.pch │ │ │ │ │ ├── SomeProject.h │ │ │ │ │ └── SomeProject.m │ │ │ └── SomeWorkspace.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── WorkspaceSettings.xcsettings │ │ └── OtherNestedDir │ │ │ └── OtherProject │ │ │ ├── OtherProject.xcodeproj │ │ │ └── project.pbxproj │ │ │ └── OtherProject │ │ │ ├── OtherProject-Prefix.pch │ │ │ ├── OtherProject.h │ │ │ └── OtherProject.m │ ├── custom.xctool-args │ ├── example-build-state-nodes.plist │ ├── example-build-state.dat │ ├── generate.sh │ ├── iOS-Application-Test-showBuildSettings.txt │ ├── iOS-Logic-Test-showBuildSettings.txt │ ├── iOS-TestsThatCrash-outputLines.txt │ ├── iOS-TestsThatCrash-showBuildSettings.txt │ ├── tests-appletv-test-bundle │ │ ├── TestProject-TVApp.app │ │ │ ├── Base.lproj │ │ │ │ └── Main.storyboardc │ │ │ │ │ ├── BYZ-38-t0r-view-8bC-Xf-vdC.nib │ │ │ │ │ ├── Info.plist │ │ │ │ │ └── UIViewController-BYZ-38-t0r.nib │ │ │ ├── Frameworks │ │ │ │ ├── IDEBundleInjection.framework │ │ │ │ │ ├── IDEBundleInjection │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── version.plist │ │ │ │ └── XCTest.framework │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── XCTest │ │ │ │ │ ├── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ │ ├── en.lproj │ │ │ │ │ └── InfoPlist.strings │ │ │ │ │ └── version.plist │ │ │ ├── Info.plist │ │ │ ├── PkgInfo │ │ │ ├── PlugIns │ │ │ │ └── TestProject-TVAppTests.xctest │ │ │ │ │ ├── Info.plist │ │ │ │ │ ├── TestProject-TVAppTests │ │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ ├── TestProject-TVApp │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── TestProject-TVAppTests.xctest │ │ │ ├── Info.plist │ │ │ ├── TestProject-TVAppTests │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── TestProject-TVFrameworkTests.xctest │ │ │ ├── Info.plist │ │ │ ├── TestProject-TVFrameworkTests │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── TestProjectTVFramework.framework │ │ │ ├── Headers │ │ │ └── TestProject-TVFramework.h │ │ │ ├── Info.plist │ │ │ ├── TestProjectTVFramework │ │ │ └── _CodeSignature │ │ │ └── CodeResources │ ├── tests-ios-test-bundle │ │ ├── SenTestingKit_Assertion.octest │ │ │ ├── Info.plist │ │ │ ├── SenTestingKit_Assertion │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── TestProject-Library-32And64bitTests.xctest │ │ │ ├── Info.plist │ │ │ ├── TestProject-Library-32And64bitTests │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── TestProject-Library-64bitTests.xctest │ │ │ ├── Info.plist │ │ │ ├── TestProject-Library-64bitTests │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ ├── TestProject-Library-XCTest-iOSTests.xctest │ │ │ ├── Info.plist │ │ │ ├── TestProject-Library-XCTest-iOSTests │ │ │ ├── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── TestProject-LibraryTests.octest │ │ │ ├── Info.plist │ │ │ ├── TestProject-LibraryTests │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── TestProject-TVAppTests.xctest │ │ │ ├── Info.plist │ │ │ ├── TestProject-TVAppTests │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ └── XCTest_Assertion.xctest │ │ │ ├── Info.plist │ │ │ ├── XCTest_Assertion │ │ │ ├── _CodeSignature │ │ │ └── CodeResources │ │ │ └── en.lproj │ │ │ └── InfoPlist.strings │ ├── tests-osx-test-bundle │ │ ├── TestProject-Library-OSX.dylib │ │ ├── TestProject-Library-OSXTests.octest │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── TestProject-Library-OSXTests │ │ │ │ └── Resources │ │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ ├── TestProject-Library-XCTest-CustomTests.xctest │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── TestProject-Library-XCTest-CustomTests │ │ │ │ └── Resources │ │ │ │ ├── TestProject-Library-XCTest-CustomTests-B3CBFC49-25B8-4984-BDDF-2EC1DCD7A2EE.xctestconfiguration │ │ │ │ └── TestProject-Library-XCTest-CustomTests-EB8FE46E-B98E-4BC3-BF2E-F2F410C6D525.xctestconfiguration │ │ ├── TestProject-Library-XCTest-OSX.dylib │ │ ├── TestProject-Library-XCTest-OSXTests.xctest │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ ├── MacOS │ │ │ │ └── TestProject-Library-XCTest-OSXTests │ │ │ │ └── Resources │ │ │ │ └── en.lproj │ │ │ │ └── InfoPlist.strings │ │ └── libTestProject-Library-XCTest-Custom.a │ ├── xcodebuild-archive-bad.txt │ └── xcodebuild-archive-good.txt ├── TestRunStateTests.m ├── TestUtil.h ├── TestUtil.m ├── TestableExecutionInfoTests.m ├── TextReporterTests.m ├── XCTestConfigurationUnarchiver.h ├── XCTestConfigurationUnarchiver.m ├── XCToolTests.m ├── XCToolUtilTests.m ├── XcodeSubjectInfoTests.m ├── en.lproj │ └── InfoPlist.strings ├── xctool-tests-Info.plist └── xctool-tests-Prefix.pch ├── xctool.xcconfig ├── xctool.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── xctool.xcscheme └── xctool ├── Action.h ├── Action.m ├── ActionScripts.h ├── ActionScripts.m ├── AnalyzeAction.h ├── AnalyzeAction.mm ├── ArchiveAction.h ├── ArchiveAction.m ├── BuildAction.h ├── BuildAction.m ├── BuildStateParser.h ├── BuildStateParser.mm ├── BuildTestsAction.h ├── BuildTestsAction.m ├── Buildable.h ├── Buildable.m ├── CleanAction.h ├── CleanAction.m ├── DgphFile.h ├── DgphFile.mm ├── EventBuffer.h ├── EventBuffer.m ├── InstallAction.h ├── InstallAction.m ├── OCEventState.h ├── OCEventState.m ├── OCTestEventState.h ├── OCTestEventState.m ├── OCTestSuiteEventState.h ├── OCTestSuiteEventState.m ├── OCUnitIOSAppTestQueryRunner.h ├── OCUnitIOSAppTestQueryRunner.m ├── OCUnitIOSAppTestRunner.h ├── OCUnitIOSAppTestRunner.m ├── OCUnitIOSDeviceTestRunner.h ├── OCUnitIOSDeviceTestRunner.m ├── OCUnitIOSLogicTestQueryRunner.h ├── OCUnitIOSLogicTestQueryRunner.m ├── OCUnitIOSLogicTestRunner.h ├── OCUnitIOSLogicTestRunner.m ├── OCUnitOSXAppTestQueryRunner.h ├── OCUnitOSXAppTestQueryRunner.m ├── OCUnitOSXAppTestRunner.h ├── OCUnitOSXAppTestRunner.m ├── OCUnitOSXLogicTestQueryRunner.h ├── OCUnitOSXLogicTestQueryRunner.m ├── OCUnitOSXLogicTestRunner.h ├── OCUnitOSXLogicTestRunner.m ├── OCUnitTestQueryRunner.h ├── OCUnitTestQueryRunner.m ├── OCUnitTestRunner.h ├── OCUnitTestRunner.m ├── OCUnitTestRunnerInternal.h ├── Options.h ├── Options.m ├── PbxprojReader.h ├── PbxprojReader.m ├── ReportStatus.h ├── ReportStatus.m ├── ReporterTask.h ├── ReporterTask.m ├── RunTestsAction.h ├── RunTestsAction.m ├── SchemeGenerator.h ├── SchemeGenerator.m ├── SimulatorWrapper ├── SimulatorInfo.h ├── SimulatorInfo.m ├── SimulatorTaskUtils.h ├── SimulatorTaskUtils.m ├── SimulatorUtils.h ├── SimulatorUtils.m ├── SimulatorWrapper.h ├── SimulatorWrapper.m ├── SimulatorWrapperXcode6.h └── SimulatorWrapperXcode6.m ├── TestAction.h ├── TestAction.m ├── TestActionInternal.h ├── TestRunState.h ├── TestRunState.m ├── TestRunning.h ├── Testable.h ├── Testable.m ├── TestableExecutionInfo.h ├── TestableExecutionInfo.m ├── Version.h ├── Version.m ├── XCTool.h ├── XCTool.m ├── XcodeSubjectInfo.h ├── XcodeSubjectInfo.m ├── XcodeTargetMatch.h ├── XcodeTargetMatch.m ├── main.m └── xctool-Prefix.pch /.buckconfig: -------------------------------------------------------------------------------- 1 | [cache] 2 | mode = dir 3 | dir_max_size = 512MB 4 | 5 | [cxx] 6 | default_platform = macosx-x86_64 7 | combined_preprocess_and_compile = true 8 | 9 | [project] 10 | ide = xcode 11 | ignore = \ 12 | .git, \ 13 | .hg, \ 14 | .buckd, \ 15 | build 16 | -------------------------------------------------------------------------------- /.buckversion: -------------------------------------------------------------------------------- 1 | e3c0eab936b0e9bc90c8ca1f4e019f6f40827922 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | *.pbxuser 3 | *.perspective 4 | *.perspectivev3 5 | *.mode1v3 6 | *.mode2v3 7 | *.xcodeproj/xcuserdata/*.xcuserdatad 8 | *.xcuserdatad 9 | xcuserdata 10 | *.swp 11 | *.xccheckout 12 | /build 13 | /scripts/build 14 | .buckd 15 | buck-out 16 | buck-cache 17 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | osx_image: xcode11.2 2 | language: objective-c 3 | script: ./scripts/travis-ci.sh 4 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | { 2 | "ignore_dirs": [ 3 | "buck-out", 4 | "buck-cache", 5 | ".buckd", 6 | "build", 7 | ] 8 | } 9 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | # Code of Conduct 2 | Facebook has adopted a Code of Conduct that we expect project participants to adhere to. Please [read the full text](https://code.fb.com/codeofconduct) so that you can understand what actions will and will not be tolerated. -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/OCHamcrest: -------------------------------------------------------------------------------- 1 | Versions/Current/OCHamcrest -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCClassMatcher.h: -------------------------------------------------------------------------------- 1 | // OCHamcrest by Jon Reid, http://qualitycoding.org/about/ 2 | // Copyright 2014 hamcrest.org. See LICENSE.txt 3 | 4 | #import 5 | 6 | 7 | @interface HCClassMatcher : HCBaseMatcher 8 | 9 | @property (readonly, nonatomic, strong) Class theClass; 10 | 11 | - (instancetype)initWithType:(Class)type; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/Headers/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- 1 | // OCHamcrest by Jon Reid, http://qualitycoding.org/about/ 2 | // Copyright 2014 hamcrest.org. See LICENSE.txt 3 | 4 | #import 5 | 6 | 7 | /** 8 | Throws an NSException if @a obj is @c nil. 9 | 10 | @ingroup helpers 11 | */ 12 | FOUNDATION_EXPORT void HCRequireNonNilObject(id obj); 13 | -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/A/OCHamcrest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/Vendor/OCHamcrest.framework/Versions/A/OCHamcrest -------------------------------------------------------------------------------- /Vendor/OCHamcrest.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Vendor/OCMock.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Vendor/OCMock.framework/OCMock: -------------------------------------------------------------------------------- 1 | Versions/Current/OCMock -------------------------------------------------------------------------------- /Vendor/OCMock.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Vendor/OCMock.framework/Versions/A/OCMock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/Vendor/OCMock.framework/Versions/A/OCMock -------------------------------------------------------------------------------- /Vendor/OCMock.framework/Versions/A/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/Vendor/OCMock.framework/Versions/A/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /Vendor/OCMock.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Vendor/OCMockito.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Vendor/OCMockito.framework/OCMockito: -------------------------------------------------------------------------------- 1 | Versions/Current/OCMockito -------------------------------------------------------------------------------- /Vendor/OCMockito.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Vendor/OCMockito.framework/Versions/A/Headers/MKTArgumentCaptor.h: -------------------------------------------------------------------------------- 1 | // OCMockito by Jon Reid, http://qualitycoding.org/about/ 2 | // Copyright 2015 Jonathan M. Reid. See LICENSE.txt 3 | 4 | #import 5 | 6 | 7 | @interface MKTArgumentCaptor : NSObject 8 | 9 | - (id)capture; 10 | - (id)value; 11 | - (NSArray *)allValues; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Vendor/OCMockito.framework/Versions/A/Headers/MKTBaseMockObject.h: -------------------------------------------------------------------------------- 1 | // OCMockito by Jon Reid, http://qualitycoding.org/about/ 2 | // Copyright 2015 Jonathan M. Reid. See LICENSE.txt 3 | 4 | #import 5 | #import "MKTPrimitiveArgumentMatching.h" 6 | 7 | 8 | @interface MKTBaseMockObject : NSProxy 9 | 10 | - (instancetype)init; 11 | - (void)reset; 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /Vendor/OCMockito.framework/Versions/A/Headers/NSInvocation+OCMockito.h: -------------------------------------------------------------------------------- 1 | // OCMockito by Jon Reid, http://qualitycoding.org/about/ 2 | // Copyright 2015 Jonathan M. Reid. See LICENSE.txt 3 | 4 | #import 5 | 6 | @interface NSInvocation (OCMockito) 7 | 8 | - (NSArray *)mkt_arguments; 9 | - (void)mkt_setReturnValue:(id)returnValue; 10 | - (void)mkt_retainArgumentsWithWeakTarget; 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /Vendor/OCMockito.framework/Versions/A/OCMockito: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/Vendor/OCMockito.framework/Versions/A/OCMockito -------------------------------------------------------------------------------- /Vendor/OCMockito.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /otest-query/otest-query-ios/otest-query-ios-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'otest-query' target in the 'otest-query' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /otest-query/otest-query-osx/otest-query-osx-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'otest-query' target in the 'otest-query' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /otest-shim/otest-shim/otest-shim-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'otest-shim' target in the 'otest-shim' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #endif 7 | -------------------------------------------------------------------------------- /reporters/reporters-tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /reporters/teamcity/TeamCityReporter.h: -------------------------------------------------------------------------------- 1 | #import "Reporter.h" 2 | 3 | @interface TeamCityReporter : Reporter 4 | 5 | @end 6 | -------------------------------------------------------------------------------- /reporters/teamcity/TeamCityStatusMessageGenerator.h: -------------------------------------------------------------------------------- 1 | #import 2 | 3 | @interface TeamCityStatusMessageGenerator : NSObject 4 | 5 | + (NSString *)escapeCharacter:(NSString *)inputString; 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /reporters/user-notifications/user-notifications-Info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | CFBundleIdentifier 6 | $(PRODUCT_BUNDLE_IDENTIFIER) 7 | 8 | 9 | -------------------------------------------------------------------------------- /scripts/RunScripts/codesign.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # We use this to codesign libraries that we use in Xcode 8. 4 | # 5 | 6 | codesign --force --sign - --timestamp=none "${CODESIGNING_FOLDER_PATH}" 7 | -------------------------------------------------------------------------------- /xcodebuild-shim/xcodebuild-fastsettings-shim/xcodebuild-fastsettings-shim-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'xcodebuild-fastsettings-lib' target in the 'xcodebuild-fastsettings-lib' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xcodebuild-shim/xcodebuild-shim/xcodebuild-shim-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'xcodebuild-lib' target in the 'xcodebuild-lib' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool.sh: -------------------------------------------------------------------------------- 1 | scripts/xctool.sh -------------------------------------------------------------------------------- /xctool.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestConstants.h: -------------------------------------------------------------------------------- 1 | // 2 | // Copyright © 2019 Facebook, Inc. All rights reserved. 3 | // 4 | 5 | #ifndef TestConstants_h 6 | #define TestConstants_h 7 | 8 | static NSString * const kDefaultDeviceName = @"iPhone 8"; 9 | 10 | #endif /* TestConstants_h */ 11 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/BrokenUTF8EncodingInFile-FIXED.txt: -------------------------------------------------------------------------------- 1 | 1\)(Z0N7~\Z3Q-C -kkvӠT.@M*AMn⾑w%ͭ$%:P\~"?OZTT-(`T9W)Ƌkqȉψ*ǂv9'sUx5Sa¤fmK"cf˪d{LDiG%Ԓ@Oi7*`0y -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/BrokenUTF8EncodingInFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/BrokenUTF8EncodingInFile.txt -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ContextTest.m: -------------------------------------------------------------------------------- 1 | // 2 | // ContextTest.m 3 | // 4 | // Created on 7/22/13. 5 | // 6 | // 7 | 8 | #import "ContextTest.h" 9 | 10 | @implementation ContextTest 11 | 12 | static int test() { 13 | NSObject *blah = [[NSObject alloc] init]; 14 | } 15 | 16 | static int test2() { 17 | NSObject *blah = [[NSObject alloc] init]; 18 | } 19 | 20 | @end 21 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/FakeApp.app/FakeApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/FakeApp.app/FakeApp -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/FakeApp.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/FakeApp.app/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/FakeApp.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/.gitignore: -------------------------------------------------------------------------------- 1 | # We're going to commit the build products of KiwiTests, so allow build. 2 | !build 3 | # But, we don't need the intermediate products or dSYM files. 4 | Build/Intermediates 5 | *.dSYM 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit-AppTests.octest/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit-AppTests.octest/Assets.car -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit-AppTests.octest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit-AppTests.octest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit-AppTests.octest/KiwiTests-OCUnit-AppTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit-AppTests.octest/KiwiTests-OCUnit-AppTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit-AppTests.octest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit-AppTests.octest/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit.octest/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit.octest/Assets.car -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit.octest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit.octest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit.octest/KiwiTests-OCUnit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit.octest/KiwiTests-OCUnit -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit.octest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-OCUnit.octest/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-TestHost.app/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-TestHost.app/Assets.car -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-TestHost.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-TestHost.app/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-TestHost.app/KiwiTests-TestHost: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-TestHost.app/KiwiTests-TestHost -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-TestHost.app/LaunchImage-700-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-TestHost.app/LaunchImage-700-568h@2x.png -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-TestHost.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-TestHost.app/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-TestHost.app/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest-AppTests.xctest/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest-AppTests.xctest/Assets.car -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest-AppTests.xctest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest-AppTests.xctest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest-AppTests.xctest/KiwiTests-XCTest-AppTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest-AppTests.xctest/KiwiTests-XCTest-AppTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest-AppTests.xctest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest-AppTests.xctest/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest.xctest/Assets.car: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest.xctest/Assets.car -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest.xctest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest.xctest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest.xctest/KiwiTests-XCTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest.xctest/KiwiTests-XCTest -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest.xctest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/KiwiTests-XCTest.xctest/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-OCUnit-AppTests-Kiwi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-OCUnit-AppTests-Kiwi.a -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-OCUnit-AppTests.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-OCUnit-AppTests.a -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-OCUnit-Kiwi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-OCUnit-Kiwi.a -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-OCUnit.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-OCUnit.a -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-XCTest-AppTests-Kiwi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-XCTest-AppTests-Kiwi.a -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-XCTest-AppTests.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-XCTest-AppTests.a -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-XCTest-Kiwi.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-XCTest-Kiwi.a -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-XCTest.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/KiwiTests/Build/Products/Debug-iphonesimulator/libPods-KiwiTests-XCTest.a -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-OCUnit-AppTests/KiwiTests-OCUnit-AppTests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | #import 9 | #import 10 | #endif 11 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-OCUnit-AppTests/KiwiTests_OCUnit_AppTests.m: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | SPEC_BEGIN(KiwiTests_OCUnit_AppTests) 5 | 6 | #include "../TestCases.m" 7 | 8 | SPEC_END 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-OCUnit-AppTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-OCUnit/KiwiTests-OCUnit-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | #import 9 | #import 10 | #endif 11 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-OCUnit/KiwiTests_OCUnit.m: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | SPEC_BEGIN(KiwiTests_OCUnit) 5 | 6 | #include "../TestCases.m" 7 | 8 | SPEC_END 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-OCUnit/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-TestHost/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // KiwiTests-TestHost 4 | // 5 | // Created by Fred Potter on 11/8/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-TestHost/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-TestHostTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-XCTest-AppTests/KiwiTests-XCTest-AppTests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | #import 9 | #import 10 | #endif 11 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-XCTest-AppTests/KiwiTests_XCTest_AppTests.m: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | SPEC_BEGIN(KiwiTests_XCTest_AppTests) 5 | 6 | #include "../TestCases.m" 7 | 8 | SPEC_END 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-XCTest-AppTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-XCTest/KiwiTests-XCTest-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | #import 9 | #import 10 | #endif 11 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-XCTest/KiwiTests_XCTest.m: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | SPEC_BEGIN(KiwiTests_XCTest) 5 | 6 | #include "../TestCases.m" 7 | 8 | SPEC_END 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests-XCTest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/KiwiTests.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWAfterAllNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWAfterEachNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWAny.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWAsyncVerifier.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBeforeAllNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBeforeEachNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBlock.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBlockNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWCallSite.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWCaptureSpy.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWChangeMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWContainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWContainStringMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWContextNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWCountType.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWEqualMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWExample.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWExampleDelegate.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWExampleNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWExampleSuite.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWExistVerifier.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWExpectationType.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWFailure.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWFormatter.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWFutureObject.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWGenericMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWHaveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWInequalityMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWIntercept.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/NonARC/KWIntercept.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWInvocationCapturer.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWItNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWMatchVerifier.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWMatcherFactory.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWMatchers.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWMatching.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWMessagePattern.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/NonARC/KWMessagePattern.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWMessageSpying.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWMessageTracker.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWMock.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWNilMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWNull.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWObjCUtilities.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWPendingNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWProbe.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWProbePoller.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWRaiseMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWRaiseMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWReceiveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWReporting.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWSpec.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWStringUtilities.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWStub.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/NonARC/KWStub.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWSymbolicator.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/NonARC/KWSymbolicator.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWValue.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWVerifying.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KWWorkarounds.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/Kiwi.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KiwiBlockMacros.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KiwiConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/KiwiMacros.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/BuildHeaders/Kiwi/SenTestSuite+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/SenTestingKit/SenTestSuite+KiwiAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWAfterAllNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWAfterEachNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWAny.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWAsyncVerifier.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBeforeAllNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBeforeEachNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBlock.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBlockNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWCallSite.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWCaptureSpy.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWChangeMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWContainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWContainStringMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWContextNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWCountType.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWEqualMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWExample.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWExampleDelegate.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWExampleNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWExampleSuite.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWExistVerifier.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWExpectationType.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWFailure.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWFormatter.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWFutureObject.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWGenericMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWHaveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWInequalityMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWIntercept.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/NonARC/KWIntercept.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWInvocationCapturer.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWItNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWMatchVerifier.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWMatcherFactory.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWMatchers.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWMatching.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWMessagePattern.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/NonARC/KWMessagePattern.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWMessageSpying.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWMessageTracker.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWMock.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWNilMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWNull.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWObjCUtilities.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWPendingNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWProbe.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWProbePoller.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWRaiseMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWRaiseMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWReceiveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWReporting.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWSpec.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWStringUtilities.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWStub.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/NonARC/KWStub.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWSymbolicator.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/NonARC/KWSymbolicator.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWValue.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWVerifying.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KWWorkarounds.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/Kiwi.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KiwiBlockMacros.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KiwiConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/KiwiMacros.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Headers/Kiwi/SenTestSuite+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../Kiwi/SenTestingKit/SenTestSuite+KiwiAdditions.h -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Kiwi/Classes/Core/KWCaptureSpy.h: -------------------------------------------------------------------------------- 1 | #import "KWMessageSpying.h" 2 | 3 | @interface KWCaptureSpy : NSObject 4 | 5 | @property (nonatomic, strong, readonly) id argument; 6 | 7 | - (id)initWithArgumentIndex:(NSUInteger)index; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Kiwi/Classes/Core/KWCountType.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | enum { 10 | KWCountTypeExact, 11 | KWCountTypeAtLeast, 12 | KWCountTypeAtMost 13 | }; 14 | 15 | typedef NSUInteger KWCountType; 16 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Kiwi/Classes/Core/KWDeviceInfo.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @interface KWDeviceInfo : NSObject 10 | 11 | #pragma mark - Getting the Device Type 12 | 13 | + (BOOL)isSimulator; 14 | + (BOOL)isPhysical; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Kiwi/Classes/Core/KWExpectationType.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | enum { 10 | KWExpectationTypeShould, 11 | KWExpectationTypeShouldNot, 12 | KWExpectationTypeMaybe 13 | }; 14 | 15 | typedef NSUInteger KWExpectationType; 16 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Kiwi/Classes/Core/KWProbe.h: -------------------------------------------------------------------------------- 1 | // 2 | // KWProbe.h 3 | // iOSFalconCore 4 | // 5 | // Created by Luke Redpath on 13/01/2011. 6 | // Copyright 2011 LJR Software Limited. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @protocol KWProbe 12 | - (BOOL)isSatisfied; 13 | - (void)sample; 14 | @end 15 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Kiwi/Classes/Core/KWReporting.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @class KWFailure; 10 | 11 | @protocol KWReporting 12 | 13 | #pragma mark - Reporting Failures 14 | 15 | - (void)reportFailure:(KWFailure *)failure; 16 | 17 | @end 18 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | 9 | @interface NSValue(KiwiAdditions) 10 | 11 | #pragma mark - Accessing Data 12 | 13 | - (NSData *)dataValue; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWBeEmptyMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)beEmpty; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWBeZeroMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)beZero; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.h: -------------------------------------------------------------------------------- 1 | // 2 | // Licensed under the terms in License.txt 3 | // 4 | // Copyright 2010 Allen Ding. All rights reserved. 5 | // 6 | 7 | #import "KiwiConfiguration.h" 8 | #import "KWMatcher.h" 9 | 10 | @interface KWEqualMatcher : KWMatcher 11 | 12 | #pragma mark - Configuring Matchers 13 | 14 | - (void)equal:(id)anObject; 15 | 16 | @end 17 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Kiwi/SenTestingKit/SenTestSuite+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | // 2 | // SenTestSuite+KiwiAdditions.h 3 | // Kiwi 4 | // 5 | // Created by Jerry Marino on 5/17/13. 6 | // Copyright (c) 2013 Allen Ding. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SenTestSuite (KiwiAdditions) 12 | 13 | 14 | @end 15 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Pods-KiwiTests-OCUnit-AppTests-Kiwi-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KiwiTests_OCUnit_AppTests_Kiwi : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KiwiTests_OCUnit_AppTests_Kiwi 5 | @end 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Pods-KiwiTests-OCUnit-AppTests-Kiwi-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-KiwiTests-OCUnit-AppTests-environment.h" 6 | 7 | 8 | 9 | #import 10 | 11 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Pods-KiwiTests-OCUnit-AppTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KiwiTests_OCUnit_AppTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KiwiTests_OCUnit_AppTests 5 | @end 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Pods-KiwiTests-OCUnit-Kiwi-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KiwiTests_OCUnit_Kiwi : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KiwiTests_OCUnit_Kiwi 5 | @end 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Pods-KiwiTests-OCUnit-Kiwi-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-KiwiTests-OCUnit-environment.h" 6 | 7 | 8 | 9 | #import 10 | 11 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Pods-KiwiTests-OCUnit-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KiwiTests_OCUnit : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KiwiTests_OCUnit 5 | @end 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Pods-KiwiTests-XCTest-AppTests-Kiwi-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KiwiTests_XCTest_AppTests_Kiwi : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KiwiTests_XCTest_AppTests_Kiwi 5 | @end 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Pods-KiwiTests-XCTest-AppTests-Kiwi-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-KiwiTests-XCTest-AppTests-environment.h" 6 | 7 | 8 | #import 9 | 10 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Pods-KiwiTests-XCTest-AppTests-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KiwiTests_XCTest_AppTests : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KiwiTests_XCTest_AppTests 5 | @end 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Pods-KiwiTests-XCTest-Kiwi-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KiwiTests_XCTest_Kiwi : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KiwiTests_XCTest_Kiwi 5 | @end 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Pods-KiwiTests-XCTest-Kiwi-prefix.pch: -------------------------------------------------------------------------------- 1 | #ifdef __OBJC__ 2 | #import 3 | #endif 4 | 5 | #import "Pods-KiwiTests-XCTest-environment.h" 6 | 7 | 8 | #import 9 | 10 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/KiwiTests/Pods/Pods-KiwiTests-XCTest-dummy.m: -------------------------------------------------------------------------------- 1 | #import 2 | @interface PodsDummy_Pods_KiwiTests_XCTest : NSObject 3 | @end 4 | @implementation PodsDummy_Pods_KiwiTests_XCTest 5 | @end 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectWithOnlyATestTarget-showBuildSettings-build.txt: -------------------------------------------------------------------------------- 1 | Build settings from command line: 2 | SDKROOT = iphonesimulator 3 | 4 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectWithOnlyATestTarget/ProjectWithOnlyATestTarget.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectWithOnlyATestTarget/ProjectWithOnlyATestTarget/ProjectWithOnlyATestTarget-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | #import 9 | #import 10 | #endif 11 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectWithOnlyATestTarget/ProjectWithOnlyATestTarget/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/OSXLibrary/OSXLibrary/OSXLibrary-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'OSXLibrary' target in the 'OSXLibrary' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/OSXLibrary/OSXLibrary/OSXLibrary.h: -------------------------------------------------------------------------------- 1 | // 2 | // OSXLibrary.h 3 | // OSXLibrary 4 | // 5 | // Created by Fred Potter on 5/28/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface OSXLibrary : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/OSXLibrary/OSXLibrary/OSXLibrary.m: -------------------------------------------------------------------------------- 1 | // 2 | // OSXLibrary.m 3 | // OSXLibrary 4 | // 5 | // Created by Fred Potter on 5/28/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import "OSXLibrary.h" 10 | 11 | #import 12 | 13 | @implementation OSXLibrary 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/OSXLibrary/OSXLibraryTests/OSXLibraryTests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'OSXLibraryTests' target in the 'OSXLibraryTests' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/OSXLibrary/OSXLibraryTests/OSXLibraryTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // OSXLibraryTests.h 3 | // OSXLibraryTests 4 | // 5 | // Created by Fred Potter on 5/31/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface OSXLibraryTests : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/OSXLibrary/OSXLibraryTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/ProjectsWithDifferentSDKs.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/ProjectsWithDifferentSDKs.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/iOSLibrary/iOSLibrary/iOSLibrary-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'iOSLibrary' target in the 'iOSLibrary' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/iOSLibrary/iOSLibrary/iOSLibrary.h: -------------------------------------------------------------------------------- 1 | // 2 | // iOSLibrary.h 3 | // iOSLibrary 4 | // 5 | // Created by Fred Potter on 5/28/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface iOSLibrary : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/iOSLibrary/iOSLibrary/iOSLibrary.m: -------------------------------------------------------------------------------- 1 | // 2 | // iOSLibrary.m 3 | // iOSLibrary 4 | // 5 | // Created by Fred Potter on 5/28/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import "iOSLibrary.h" 10 | 11 | #import 12 | 13 | @implementation iOSLibrary 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/iOSLibrary/iOSLibraryTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/iOSLibrary/iOSLibraryTests/iOSLibraryTests-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'iOSLibraryTests' target in the 'iOSLibraryTests' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/ProjectsWithDifferentSDKs/iOSLibrary/iOSLibraryTests/iOSLibraryTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // iOSLibraryTests.h 3 | // iOSLibraryTests 4 | // 5 | // Created by Fred Potter on 5/31/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface iOSLibraryTests : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/SchemeInWorkspaceContainer/SchemeInWorkspaceContainer.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/SchemeInWorkspaceContainer/SchemeInWorkspaceContainer.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/SchemeInWorkspaceContainer/SomeLibrary/SomeLibrary/SomeLibrary-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SomeLibrary' target in the 'SomeLibrary' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/SchemeInWorkspaceContainer/SomeLibrary/SomeLibrary/SomeLibrary.h: -------------------------------------------------------------------------------- 1 | // 2 | // SomeLibrary.h 3 | // SomeLibrary 4 | // 5 | // Created by Fred Potter on 3/13/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SomeLibrary : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/SchemeInWorkspaceContainer/SomeLibrary/SomeLibrary/SomeLibrary.m: -------------------------------------------------------------------------------- 1 | // 2 | // SomeLibrary.m 3 | // SomeLibrary 4 | // 5 | // Created by Fred Potter on 3/13/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import "SomeLibrary.h" 10 | 11 | @implementation SomeLibrary 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/SchemeInWorkspaceContainer/SomeLibrary/SomeLibraryTests/SomeLibraryTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // SomeLibraryTests.h 3 | // SomeLibraryTests 4 | // 5 | // Created by Fred Potter on 3/13/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SomeLibraryTests : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/SchemeInWorkspaceContainer/SomeLibrary/SomeLibraryTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestMultipleProjectsInDirectory/TestMultipleProjectsInDirectoryProject1.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestMultipleProjectsInDirectory/TestMultipleProjectsInDirectoryProject1/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestMultipleProjectsInDirectory/TestMultipleProjectsInDirectoryProject2.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestMultipleProjectsInDirectory/TestMultipleProjectsInDirectoryProject2/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestMultipleProjectsInDirectory/xctool: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestMultipleProjectsInDirectory/xctool -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/.gitignore: -------------------------------------------------------------------------------- 1 | # We're going to commit the build products of KiwiTests, so allow build. 2 | !build 3 | # But, we don't need the intermediate products or dSYM files. 4 | Build/Intermediates 5 | *.dSYM 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/Build/Products/Debug/TestProject-App-OSX.app/Contents/MacOS/TestProject-App-OSX: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-App-OSX/Build/Products/Debug/TestProject-App-OSX.app/Contents/MacOS/TestProject-App-OSX -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/Build/Products/Debug/TestProject-App-OSX.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/Build/Products/Debug/TestProject-App-OSX.app/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-App-OSX/Build/Products/Debug/TestProject-App-OSX.app/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/Build/Products/Debug/TestProject-App-OSX.app/Contents/Resources/en.lproj/MainMenu.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-App-OSX/Build/Products/Debug/TestProject-App-OSX.app/Contents/Resources/en.lproj/MainMenu.nib -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/Build/Products/Debug/TestProject-App-OSXTests.xctest/Contents/MacOS/TestProject-App-OSXTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-App-OSX/Build/Products/Debug/TestProject-App-OSXTests.xctest/Contents/MacOS/TestProject-App-OSXTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/Build/Products/Debug/TestProject-App-OSXTests.xctest/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-App-OSX/Build/Products/Debug/TestProject-App-OSXTests.xctest/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/TestProject-App-OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/TestProject-App-OSX.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/TestProject-App-OSX/Something.h: -------------------------------------------------------------------------------- 1 | // 2 | // Something.h 3 | // TestProject-App-OSX 4 | // 5 | // Created by Fred Potter on 11/13/13. 6 | // Copyright (c) 2013 Facebook, Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface Something : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/TestProject-App-OSX/Something.m: -------------------------------------------------------------------------------- 1 | // 2 | // Something.m 3 | // TestProject-App-OSX 4 | // 5 | // Created by Fred Potter on 11/13/13. 6 | // Copyright (c) 2013 Facebook, Inc. All rights reserved. 7 | // 8 | 9 | #import "Something.h" 10 | 11 | @implementation Something 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/TestProject-App-OSX/TestProject-App-OSX-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestProject-App-OSX' target in the 'TestProject-App-OSX' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/TestProject-App-OSX/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/TestProject-App-OSX/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TestProject-App-OSX 4 | // 5 | // Created by Fred Potter on 4/13/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, char *argv[]) 12 | { 13 | return NSApplicationMain(argc, (const char **)argv); 14 | } 15 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/TestProject-App-OSXTests/TestProject_App_OSXTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_App_OSXTests.h 3 | // TestProject-App-OSXTests 4 | // 5 | // Created by Fred Potter on 4/13/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TestProject_App_OSXTests : XCTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/TestProject-App-OSXTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-OSX/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | # Store build products under Build/... 4 | xcodebuild \ 5 | -project TestProject-App-OSX.xcodeproj \ 6 | -scheme TestProject-App-OSX \ 7 | -IDEBuildLocationStyle=Custom \ 8 | -IDECustomBuildLocationType=RelativeToWorkspace \ 9 | -IDECustomBuildIntermediatesPath=Build/Intermediates \ 10 | -IDECustomBuildProductsPath=Build/Products 11 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-XCTest-OSX/TestProject-App-XCTest-OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-XCTest-OSX/TestProject-App-XCTest-OSX/TestProject-App-XCTest-OSX-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | #import 9 | #endif 10 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-XCTest-OSX/TestProject-App-XCTest-OSX/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-XCTest-OSX/TestProject-App-XCTest-OSX/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // TestProject-App-XCTest-OSX 4 | // 5 | // Created by Ryan Rhee on 9/12/13. 6 | // Copyright (c) 2013 Facebook. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, const char * argv[]) 12 | { 13 | return NSApplicationMain(argc, argv); 14 | } 15 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-App-XCTest-OSX/TestProject-App-XCTest-OSXTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Assertion/TestProject-Assertion.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Assertion/TestProject-Assertion/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Assertion/TestProject-AssertionTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-64bit/TestProject-Library-64bit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-64bit/TestProject-Library-64bit/TestProjectLibrary64bit.h: -------------------------------------------------------------------------------- 1 | // Copyright 2004-present Facebook. All Rights Reserved. 2 | 3 | #import 4 | 5 | @interface TestProjectLibrary64bit : NSObject 6 | 7 | - (void)randomMethod; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-64bit/TestProject-Library-64bit/TestProjectLibrary64bit.m: -------------------------------------------------------------------------------- 1 | // Copyright 2004-present Facebook. All Rights Reserved. 2 | 3 | #import "TestProjectLibrary64bit.h" 4 | 5 | @implementation TestProjectLibrary64bit 6 | 7 | - (void)randomMethod 8 | { 9 | NSLog(@"randomMethod"); 10 | } 11 | 12 | @end 13 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-64bit/TestProject-Library-64bitTests/TestProjectLibrary64bitTests.h: -------------------------------------------------------------------------------- 1 | // Copyright 2004-present Facebook. All Rights Reserved. 2 | 3 | #import 4 | 5 | @interface TestProjectLibrary64bitTests : XCTestCase 6 | 7 | @end 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-OSX/TestProject-Library-OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-OSX/TestProject-Library-OSX/TestProject-Library-OSX-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestProject-Library-OSX' target in the 'TestProject-Library-OSX' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-OSX/TestProject-Library-OSX/TestProject_Library_OSX.h: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_Library_OSX.h 3 | // TestProject-Library-OSX 4 | // 5 | // Created by Fred Potter on 4/10/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TestProject_Library_OSX : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-OSX/TestProject-Library-OSX/TestProject_Library_OSX.m: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_Library_OSX.m 3 | // TestProject-Library-OSX 4 | // 5 | // Created by Fred Potter on 4/10/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import "TestProject_Library_OSX.h" 10 | 11 | @implementation TestProject_Library_OSX 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-OSX/TestProject-Library-OSXTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-WithDifferentConfigurations/TestProject-Library.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-WithDifferentConfigurations/TestProject-Library/TestProject-Library-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestProject-Library' target in the 'TestProject-Library' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-WithDifferentConfigurations/TestProject-Library/TestProject_Library.h: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_Library.h 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 1/23/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface TestProject_Library : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-WithDifferentConfigurations/TestProject-Library/TestProject_Library.m: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_Library.m 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 1/23/13. 6 | // 7 | // 8 | 9 | #import "TestProject_Library.h" 10 | 11 | @implementation TestProject_Library 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-WithDifferentConfigurations/TestProject-LibraryTests/DisabledTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // DisabledTests.h 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 5/1/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface DisabledTests : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-WithDifferentConfigurations/TestProject-LibraryTests/DisabledTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // DisabledTests.m 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 5/1/13. 6 | // 7 | // 8 | 9 | #import "DisabledTests.h" 10 | 11 | @implementation DisabledTests 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-WithDifferentConfigurations/TestProject-LibraryTests/OtherTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // OtherTests.h 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 2/15/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface OtherTests : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-WithDifferentConfigurations/TestProject-LibraryTests/OtherTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // OtherTests.m 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 2/15/13. 6 | // 7 | // 8 | 9 | #import "OtherTests.h" 10 | 11 | @implementation OtherTests 12 | 13 | - (void)testSomething 14 | { 15 | STAssertTrue(YES, nil); 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-WithDifferentConfigurations/TestProject-LibraryTests/SomeTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_LibraryTests.h 3 | // TestProject-LibraryTests 4 | // 5 | // Created by Fred Potter on 1/23/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface SomeTests : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-WithDifferentConfigurations/TestProject-LibraryTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-XCTest-Custom/TestProject-Library-XCTest-Custom.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-XCTest-OSX/TestProject-Library-XCTest-OSX.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-XCTest-OSX/TestProject-Library-XCTest-OSX/TestProject-Library-XCTest-OSX-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | #import 9 | #endif 10 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-XCTest-OSX/TestProject-Library-XCTest-OSXTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-XCTest-iOS/TestProject-Library-XCTest-iOS.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-XCTest-iOS/TestProject-Library-XCTest-iOS/TestProject-Library-XCTest-iOS-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | #import 9 | #endif 10 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library-XCTest-iOS/TestProject-Library-XCTest-iOSTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library/TestProject-Library.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library/TestProject-Library/TestProject-Library-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestProject-Library' target in the 'TestProject-Library' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library/TestProject-Library/TestProject_Library.h: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_Library.h 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 1/23/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface TestProject_Library : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library/TestProject-Library/TestProject_Library.m: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_Library.m 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 1/23/13. 6 | // 7 | // 8 | 9 | #import "TestProject_Library.h" 10 | 11 | @implementation TestProject_Library 12 | 13 | - (void)testWillPass 14 | { 15 | NSObject *blah = [[NSObject alloc] init]; 16 | } 17 | @end 18 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library/TestProject-LibraryTests/DisabledTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // DisabledTests.h 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 5/1/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface DisabledTests : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library/TestProject-LibraryTests/DisabledTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // DisabledTests.m 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 5/1/13. 6 | // 7 | // 8 | 9 | #import "DisabledTests.h" 10 | 11 | @implementation DisabledTests 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library/TestProject-LibraryTests/OtherTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // OtherTests.h 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 2/15/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface OtherTests : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library/TestProject-LibraryTests/OtherTests.m: -------------------------------------------------------------------------------- 1 | // 2 | // OtherTests.m 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 2/15/13. 6 | // 7 | // 8 | 9 | #import "OtherTests.h" 10 | 11 | @implementation OtherTests 12 | 13 | - (void)testSomething 14 | { 15 | STAssertTrue(YES, nil); 16 | } 17 | 18 | @end 19 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library/TestProject-LibraryTests/SomeTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_LibraryTests.h 3 | // TestProject-LibraryTests 4 | // 5 | // Created by Fred Potter on 1/23/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface SomeTests : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-Library/TestProject-LibraryTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-RecursiveDefinitions/Core/Core.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-RecursiveDefinitions/Core/Core.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-RecursiveDefinitions/Core/CoreTests/CoreTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // CoreTests.swift 3 | // CoreTests 4 | // 5 | // Created by Taykalo on 5/3/18. 6 | // Copyright © 2018 Recursive. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | @testable import Core 11 | 12 | class CoreTests: XCTestCase { 13 | 14 | } 15 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-RecursiveDefinitions/MainProject/MainProject/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // MainProject 4 | // 5 | // Created by Taykalo on 5/3/18. 6 | // Copyright © 2018 Recusrive. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : NSObject 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-RecursiveDefinitions/MainProject/MainProject/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-RecursiveDefinitions/MainProject/MainProject/main.m: -------------------------------------------------------------------------------- 1 | // 2 | // main.m 3 | // MainProject 4 | // 5 | // Created by Taykalo on 5/3/18. 6 | // Copyright © 2018 Recusrive. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | int main(int argc, const char * argv[]) { 12 | return NSApplicationMain(argc, argv); 13 | } 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-RecursiveDefinitions/TestingCore/TestingCoreTests/TestingCoreTests.swift: -------------------------------------------------------------------------------- 1 | // 2 | // TestingCoreTests.swift 3 | // TestingCoreTests 4 | // 5 | // Created by Taykalo on 5/3/18. 6 | // Copyright © 2018 Recursive. All rights reserved. 7 | // 8 | 9 | import XCTest 10 | @testable import TestingCore 11 | 12 | class TestingCoreTests: XCTestCase { 13 | 14 | } 15 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-RecursiveDefinitions/Untitled.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-RecursiveProjectsAndSchemes/TestProject-RecursiveProjectsAndSchemes.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-RecursiveProjectsAndSchemes/TestProject-RecursiveProjectsAndSchemes.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "idiom" : "tv", 5 | "scale" : "1x" 6 | } 7 | ], 8 | "info" : { 9 | "version" : 1, 10 | "author" : "xcode" 11 | } 12 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "info" : { 3 | "version" : 1, 4 | "author" : "xcode" 5 | } 6 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVApp/TestProject-TVApp/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- 1 | { 2 | "images" : [ 3 | { 4 | "orientation" : "landscape", 5 | "idiom" : "tv", 6 | "extent" : "full-screen", 7 | "minimum-system-version" : "9.0", 8 | "scale" : "1x" 9 | } 10 | ], 11 | "info" : { 12 | "version" : 1, 13 | "author" : "xcode" 14 | } 15 | } -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-TVFramework/TestProject-TVFramework.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITests.build/Base.lproj/LaunchScreen-SBPartialInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITests.build/Base.lproj/Main-SBPartialInfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITests.build/Objects-normal/x86_64/main.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/nekto/Projects/xctool/xctool/xctool-tests/TestData/TestProject-UITests/TestProject-UITests/main.m \ 3 | /Users/nekto/Projects/xctool/xctool/xctool-tests/TestData/TestProject-UITests/TestProject-UITests/AppDelegate.h 4 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITests.build/TestProject-UITests-all-non-framework-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITests.build/TestProject-UITests-all-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITests.build/TestProject-UITests-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITests.build/TestProject-UITests-own-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITests.build/TestProject-UITests.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITests.build/all-product-headers.yaml: -------------------------------------------------------------------------------- 1 | {"case-sensitive":"false","roots":[],"version":0} -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITests.build/assetcatalog_generated_info.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITestsUITests.build/Objects-normal/x86_64/TestProject_UITestsUITests.d: -------------------------------------------------------------------------------- 1 | dependencies: \ 2 | /Users/nekto/Projects/xctool/xctool/xctool-tests/TestData/TestProject-UITests/TestProject-UITestsUITests/TestProject_UITestsUITests.m 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITestsUITests.build/TestProject-UITestsUITests-all-non-framework-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITestsUITests.build/TestProject-UITestsUITests-all-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITestsUITests.build/TestProject-UITestsUITests-generated-files.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITestsUITests.build/TestProject-UITestsUITests-own-target-headers.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITestsUITests.build/TestProject-UITestsUITests.hmap: -------------------------------------------------------------------------------- 1 | pamhx -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/TestProject-UITests.build/Debug-iphonesimulator/TestProject-UITestsUITests.build/all-product-headers.yaml: -------------------------------------------------------------------------------- 1 | {"case-sensitive":"false","roots":[],"version":0} -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/XCBuildData/316d59681c75046506ae1c6f9770a76f-desc.xcbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/XCBuildData/316d59681c75046506ae1c6f9770a76f-desc.xcbuild -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/XCBuildData/61ad00148fa7939f3d51d0de0b506c08-desc.xcbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/XCBuildData/61ad00148fa7939f3d51d0de0b506c08-desc.xcbuild -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/XCBuildData/6b73642b17452da5539b0d9bb9478ab5-desc.xcbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/XCBuildData/6b73642b17452da5539b0d9bb9478ab5-desc.xcbuild -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/XCBuildData/817ce6a3b2678cdb7cc122ddd76d8ff7-desc.xcbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/XCBuildData/817ce6a3b2678cdb7cc122ddd76d8ff7-desc.xcbuild -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/XCBuildData/BuildDescriptionCacheIndex-04367476d1978193bf9c54e5b8ed2046: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/XCBuildData/BuildDescriptionCacheIndex-04367476d1978193bf9c54e5b8ed2046 -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/XCBuildData/build.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Intermediates/XCBuildData/build.db -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/Base.lproj/LaunchScreen.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/Base.lproj/LaunchScreen.storyboardc/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/Base.lproj/Main.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/Base.lproj/Main.storyboardc/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/TestProject-UITests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITests.app/TestProject-UITests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITestsUITests-Runner.app/Frameworks/XCTest.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITestsUITests-Runner.app/Frameworks/XCTest.framework/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITestsUITests-Runner.app/Frameworks/XCTest.framework/XCTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITestsUITests-Runner.app/Frameworks/XCTest.framework/XCTest -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITestsUITests-Runner.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITestsUITests-Runner.app/TestProject-UITestsUITests-Runner: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject-UITests/Build/Products/Debug-iphonesimulator/TestProject-UITestsUITests-Runner.app/TestProject-UITestsUITests-Runner -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/TestProject-UITests.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/TestProject-UITests.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-UITests/TestProject-UITests/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // TestProject-UITests 4 | // 5 | // Created by Aleksey Kononov on 2/4/18. 6 | // Copyright © 2018 Facebook. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | 14 | @end 15 | 16 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject-WithNonExistingTargetInScheme/TestProject-WithNonExistingTargetInScheme.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProject.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProject.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEDidComputeMac32BitWarning 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProject/AppDelegate.h: -------------------------------------------------------------------------------- 1 | // 2 | // AppDelegate.h 3 | // TestProject 4 | // 5 | // Created by Fred Potter on 11/12/12. 6 | // Copyright (c) 2012 Facebook, Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface AppDelegate : UIResponder 12 | 13 | @property (strong, nonatomic) UIWindow *window; 14 | 15 | @end 16 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProject/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProjectApplicationTests/TestProjectApplicationTests.h: -------------------------------------------------------------------------------- 1 | // 2 | // TestProjectTests.h 3 | // TestProjectTests 4 | // 5 | // Created by Fred Potter on 11/12/12. 6 | // Copyright (c) 2012 Facebook, Inc. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TestProjectTests : SenTestCase 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProjectApplicationTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProjectApplicationTestsThatFail/TestProjectApplicationTestsThatFail-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestProjectApplicationTestsThatFail' target in the 'TestProjectApplicationTestsThatFail' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProjectApplicationTestsThatFail/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProjectApplicationTestsWithSomeDisabled/TestProjectApplicationTestsWithSomeDisabled-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestProjectApplicationTestsWithSomeDisabled' target in the 'TestProjectApplicationTestsWithSomeDisabled' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProjectApplicationTestsWithSomeDisabled/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProjectLogicTestsThatFail/TestProjectLogicTestsThatFail-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestProjectLogicTestsThatFail' target in the 'TestProjectLogicTestsThatFail' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProjectLogicTestsThatFail/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProjectLogicTestsThatPass/TestProjectLogicTestsThatPass-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestProjectLogicTestsThatPass' target in the 'TestProjectLogicTestsThatPass' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject/TestProjectLogicTestsThatPass/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Base.lproj/Main_iPad.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Base.lproj/Main_iPad.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Base.lproj/Main_iPad.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Base.lproj/Main_iPad.storyboardc/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Base.lproj/Main_iPad.storyboardc/UIViewController-BYZ-38-t0r.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Base.lproj/Main_iPad.storyboardc/UIViewController-BYZ-38-t0r.nib -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Base.lproj/Main_iPhone.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Base.lproj/Main_iPhone.storyboardc/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Base.lproj/Main_iPhone.storyboardc/UIViewController-vXZ-lx-hvc.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Base.lproj/Main_iPhone.storyboardc/UIViewController-vXZ-lx-hvc.nib -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Base.lproj/Main_iPhone.storyboardc/vXZ-lx-hvc-view-kh9-bI-dsS.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Base.lproj/Main_iPhone.storyboardc/vXZ-lx-hvc-view-kh9-bI-dsS.nib -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/LaunchImage-700-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/LaunchImage-700-568h@2x.png -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/TestProject64bit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/TestProject64bit -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.app/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit/ViewController.h: -------------------------------------------------------------------------------- 1 | // 2 | // ViewController.h 3 | // TestProject64bit 4 | // 5 | // Created by Ryan Rhee on 10/18/13. 6 | // Copyright (c) 2013 Facebook. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface ViewController : UIViewController 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bit/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProject64bit/TestProject64bitTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProjectWithSchemeThatReferencesNonExistentTestTarget-TestProject-Library-showBuildSettingsError.txt: -------------------------------------------------------------------------------- 1 | The project 'xctool/xctool-tests/TestData/TestProjectWithSchemeThatReferencesNonExistentTestTarget/TestProject-Library.xcodeproj' does not contain a target named 'TestProject-LibraryTests'. 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProjectWithSchemeThatReferencesNonExistentTestTarget/TestProject-Library.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProjectWithSchemeThatReferencesNonExistentTestTarget/TestProject-Library/TestProject-Library-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestProject-Library' target in the 'TestProject-Library' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProjectWithSchemeThatReferencesNonExistentTestTarget/TestProject-Library/TestProject_Library.h: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_Library.h 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 1/23/13. 6 | // 7 | // 8 | 9 | #import 10 | 11 | @interface TestProject_Library : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestProjectWithSchemeThatReferencesNonExistentTestTarget/TestProject-Library/TestProject_Library.m: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_Library.m 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 1/23/13. 6 | // 7 | // 8 | 9 | #import "TestProject_Library.h" 10 | 11 | @implementation TestProject_Library 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestThatThrowsExceptionOnStart/.gitignore: -------------------------------------------------------------------------------- 1 | # We're going to commit the build products of KiwiTests, so allow build. 2 | !build 3 | # But, we don't need the intermediate products or dSYM files. 4 | Build/Intermediates 5 | *.dSYM 6 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestThatThrowsExceptionOnStart/Build/Products/Debug/TestThatThrowsExceptionOnStart.xctest/Contents/MacOS/TestThatThrowsExceptionOnStart: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestThatThrowsExceptionOnStart/Build/Products/Debug/TestThatThrowsExceptionOnStart.xctest/Contents/MacOS/TestThatThrowsExceptionOnStart -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestThatThrowsExceptionOnStart/Build/Products/Debug/TestThatThrowsExceptionOnStart.xctest/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestThatThrowsExceptionOnStart/Build/Products/Debug/TestThatThrowsExceptionOnStart.xctest/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestThatThrowsExceptionOnStart/TestThatThrowsExceptionOnStart.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestThatThrowsExceptionOnStart/TestThatThrowsExceptionOnStart/TestThatThrowsExceptionOnStart-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header 3 | // 4 | // The contents of this file are implicitly included at the beginning of every source file. 5 | // 6 | 7 | #ifdef __OBJC__ 8 | #import 9 | #endif 10 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestThatThrowsExceptionOnStart/TestThatThrowsExceptionOnStart/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-Library/TestProject-Library-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestProject-Library' target in the 'TestProject-Library' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-Library/TestProject_Library.h: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_Library.h 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 2/15/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TestProject_Library : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-Library/TestProject_Library.m: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_Library.m 3 | // TestProject-Library 4 | // 5 | // Created by Fred Potter on 2/15/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import "TestProject_Library.h" 10 | 11 | @implementation TestProject_Library 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-LibraryTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-LibraryTests2/TestProject-LibraryTests2-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestProject-LibraryTests2' target in the 'TestProject-LibraryTests2' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #import 8 | #endif 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-LibraryTests2/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-OtherLib/TestProject-OtherLib-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestProject-OtherLib' target in the 'TestProject-OtherLib' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-OtherLib/TestProject_OtherLib.h: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_OtherLib.h 3 | // TestProject-OtherLib 4 | // 5 | // Created by Fred Potter on 3/3/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TestProject_OtherLib : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-OtherLib/TestProject_OtherLib.m: -------------------------------------------------------------------------------- 1 | // 2 | // TestProject_OtherLib.m 3 | // TestProject-OtherLib 4 | // 5 | // Created by Fred Potter on 3/3/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import "TestProject_OtherLib.h" 10 | 11 | @implementation TestProject_OtherLib 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-TestHost/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-TestHost/Default-568h@2x.png -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-TestHost/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-TestHost/Default.png -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-TestHost/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-TestHost/Default@2x.png -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestProject-Library/TestProject-TestHost/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestWorkspace-Library.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestWorkspace-Library/TestWorkspace-Library.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsThatCrash/CrashOnStaticInitExit/CrashOnStaticInitExit-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'CrashOnStaticInitExit' target in the 'CrashOnStaticInitExit' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsThatCrash/CrashOnStaticInitExitTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsThatCrash/TestsThatCrash.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsThatCrash/TestsThatCrash.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/TestsThatCrash/TestsThatCrash.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsThatCrash/TestsThatCrash.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsThatCrash/TestsThatCrash/TestsThatCrash-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestsThatCrash' target in the 'TestsThatCrash' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsThatCrash/TestsThatCrash/TestsThatCrash.h: -------------------------------------------------------------------------------- 1 | // 2 | // TestsThatCrash.h 3 | // TestsThatCrash 4 | // 5 | // Created by Fred Potter on 3/24/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface TestsThatCrash : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsThatCrash/TestsThatCrash/TestsThatCrash.m: -------------------------------------------------------------------------------- 1 | // 2 | // TestsThatCrash.m 3 | // TestsThatCrash 4 | // 5 | // Created by Fred Potter on 3/24/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import "TestsThatCrash.h" 10 | 11 | @implementation TestsThatCrash 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsThatCrash/TestsThatCrashTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsInRunAction/TestsWithArgAndEnvSettings.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsInRunAction/TestsWithArgAndEnvSettings/TestsWithArgAndEnvSettings-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestsWithArgAndEnvSettings' target in the 'TestsWithArgAndEnvSettings' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsInRunAction/TestsWithArgAndEnvSettings/TestsWithArgAndEnvSettings.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface TestsWithArgAndEnvSettings : NSObject 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsInRunAction/TestsWithArgAndEnvSettings/TestsWithArgAndEnvSettings.m: -------------------------------------------------------------------------------- 1 | 2 | #import "TestsWithArgAndEnvSettings.h" 3 | 4 | @implementation TestsWithArgAndEnvSettings 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsInRunAction/TestsWithArgAndEnvSettingsTests/TestsWithArgAndEnvSettingsTests.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface TestsWithArgAndEnvSettingsTests : SenTestCase 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsInRunAction/TestsWithArgAndEnvSettingsTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsInTestAction/TestsWithArgAndEnvSettings.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsInTestAction/TestsWithArgAndEnvSettings/TestsWithArgAndEnvSettings-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestsWithArgAndEnvSettings' target in the 'TestsWithArgAndEnvSettings' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsInTestAction/TestsWithArgAndEnvSettings/TestsWithArgAndEnvSettings.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface TestsWithArgAndEnvSettings : NSObject 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsInTestAction/TestsWithArgAndEnvSettings/TestsWithArgAndEnvSettings.m: -------------------------------------------------------------------------------- 1 | 2 | #import "TestsWithArgAndEnvSettings.h" 3 | 4 | @implementation TestsWithArgAndEnvSettings 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsInTestAction/TestsWithArgAndEnvSettingsTests/TestsWithArgAndEnvSettingsTests.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface TestsWithArgAndEnvSettingsTests : SenTestCase 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsInTestAction/TestsWithArgAndEnvSettingsTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsWithMacroExpansion/TestsWithArgAndEnvSettings.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsWithMacroExpansion/TestsWithArgAndEnvSettings/TestsWithArgAndEnvSettings-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'TestsWithArgAndEnvSettings' target in the 'TestsWithArgAndEnvSettings' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsWithMacroExpansion/TestsWithArgAndEnvSettings/TestsWithArgAndEnvSettings.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface TestsWithArgAndEnvSettings : NSObject 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsWithMacroExpansion/TestsWithArgAndEnvSettings/TestsWithArgAndEnvSettings.m: -------------------------------------------------------------------------------- 1 | 2 | #import "TestsWithArgAndEnvSettings.h" 3 | 4 | @implementation TestsWithArgAndEnvSettings 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsWithMacroExpansion/TestsWithArgAndEnvSettingsTests/TestsWithArgAndEnvSettingsTests.h: -------------------------------------------------------------------------------- 1 | 2 | #import 3 | 4 | @interface TestsWithArgAndEnvSettingsTests : SenTestCase 5 | 6 | @end 7 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/TestsWithArgAndEnvSettingsWithMacroExpansion/TestsWithArgAndEnvSettingsTests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/WorkspacePathTest/NestedDir/SomeProject/SomeProject/SomeProject-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'SomeProject' target in the 'SomeProject' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/WorkspacePathTest/NestedDir/SomeProject/SomeProject/SomeProject.h: -------------------------------------------------------------------------------- 1 | // 2 | // SomeProject.h 3 | // SomeProject 4 | // 5 | // Created by Fred Potter on 3/22/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface SomeProject : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/WorkspacePathTest/NestedDir/SomeProject/SomeProject/SomeProject.m: -------------------------------------------------------------------------------- 1 | // 2 | // SomeProject.m 3 | // SomeProject 4 | // 5 | // Created by Fred Potter on 3/22/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import "SomeProject.h" 10 | 11 | @implementation SomeProject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/WorkspacePathTest/NestedDir/SomeWorkspace.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | IDEWorkspaceSharedSettings_AutocreateContextsIfNeeded 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/WorkspacePathTest/OtherNestedDir/OtherProject/OtherProject/OtherProject-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'OtherProject' target in the 'OtherProject' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/WorkspacePathTest/OtherNestedDir/OtherProject/OtherProject/OtherProject.h: -------------------------------------------------------------------------------- 1 | // 2 | // OtherProject.h 3 | // OtherProject 4 | // 5 | // Created by Fred Potter on 3/22/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import 10 | 11 | @interface OtherProject : NSObject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/WorkspacePathTest/OtherNestedDir/OtherProject/OtherProject/OtherProject.m: -------------------------------------------------------------------------------- 1 | // 2 | // OtherProject.m 3 | // OtherProject 4 | // 5 | // Created by Fred Potter on 3/22/13. 6 | // Copyright (c) 2013 Fred Potter. All rights reserved. 7 | // 8 | 9 | #import "OtherProject.h" 10 | 11 | @implementation OtherProject 12 | 13 | @end 14 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/custom.xctool-args: -------------------------------------------------------------------------------- 1 | [ 2 | "-scheme", "TestProject-Library", 3 | "-showBuildSettings" 4 | ] 5 | -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Base.lproj/Main.storyboardc/BYZ-38-t0r-view-8bC-Xf-vdC.nib -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Base.lproj/Main.storyboardc/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Base.lproj/Main.storyboardc/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Base.lproj/Main.storyboardc/UIViewController-BYZ-38-t0r.nib -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Frameworks/IDEBundleInjection.framework/IDEBundleInjection -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Frameworks/IDEBundleInjection.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Frameworks/IDEBundleInjection.framework/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Frameworks/XCTest.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Frameworks/XCTest.framework/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Frameworks/XCTest.framework/XCTest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Frameworks/XCTest.framework/XCTest -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Frameworks/XCTest.framework/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/PlugIns/TestProject-TVAppTests.xctest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/PlugIns/TestProject-TVAppTests.xctest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/PlugIns/TestProject-TVAppTests.xctest/TestProject-TVAppTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/PlugIns/TestProject-TVAppTests.xctest/TestProject-TVAppTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/TestProject-TVApp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVApp.app/TestProject-TVApp -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVAppTests.xctest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVAppTests.xctest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVAppTests.xctest/TestProject-TVAppTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVAppTests.xctest/TestProject-TVAppTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVFrameworkTests.xctest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVFrameworkTests.xctest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVFrameworkTests.xctest/TestProject-TVFrameworkTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProject-TVFrameworkTests.xctest/TestProject-TVFrameworkTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProjectTVFramework.framework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProjectTVFramework.framework/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProjectTVFramework.framework/TestProjectTVFramework: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-appletv-test-bundle/TestProjectTVFramework.framework/TestProjectTVFramework -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/SenTestingKit_Assertion.octest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/SenTestingKit_Assertion.octest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/SenTestingKit_Assertion.octest/SenTestingKit_Assertion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/SenTestingKit_Assertion.octest/SenTestingKit_Assertion -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/SenTestingKit_Assertion.octest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/SenTestingKit_Assertion.octest/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-32And64bitTests.xctest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-32And64bitTests.xctest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-32And64bitTests.xctest/TestProject-Library-32And64bitTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-32And64bitTests.xctest/TestProject-Library-32And64bitTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-64bitTests.xctest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-64bitTests.xctest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-64bitTests.xctest/TestProject-Library-64bitTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-64bitTests.xctest/TestProject-Library-64bitTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-XCTest-iOSTests.xctest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-XCTest-iOSTests.xctest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-XCTest-iOSTests.xctest/TestProject-Library-XCTest-iOSTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-XCTest-iOSTests.xctest/TestProject-Library-XCTest-iOSTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-XCTest-iOSTests.xctest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-Library-XCTest-iOSTests.xctest/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-LibraryTests.octest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-LibraryTests.octest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-LibraryTests.octest/TestProject-LibraryTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-LibraryTests.octest/TestProject-LibraryTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-LibraryTests.octest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-LibraryTests.octest/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-TVAppTests.xctest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-TVAppTests.xctest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-TVAppTests.xctest/TestProject-TVAppTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/TestProject-TVAppTests.xctest/TestProject-TVAppTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/XCTest_Assertion.xctest/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/XCTest_Assertion.xctest/Info.plist -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/XCTest_Assertion.xctest/XCTest_Assertion: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/XCTest_Assertion.xctest/XCTest_Assertion -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-ios-test-bundle/XCTest_Assertion.xctest/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-ios-test-bundle/XCTest_Assertion.xctest/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-OSX.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-OSX.dylib -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-OSXTests.octest/Contents/MacOS/TestProject-Library-OSXTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-OSXTests.octest/Contents/MacOS/TestProject-Library-OSXTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-OSXTests.octest/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-OSXTests.octest/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-XCTest-CustomTests.xctest/Contents/MacOS/TestProject-Library-XCTest-CustomTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-XCTest-CustomTests.xctest/Contents/MacOS/TestProject-Library-XCTest-CustomTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-XCTest-OSX.dylib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-XCTest-OSX.dylib -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-XCTest-OSXTests.xctest/Contents/MacOS/TestProject-Library-XCTest-OSXTests: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-XCTest-OSXTests.xctest/Contents/MacOS/TestProject-Library-XCTest-OSXTests -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-XCTest-OSXTests.xctest/Contents/Resources/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-osx-test-bundle/TestProject-Library-XCTest-OSXTests.xctest/Contents/Resources/en.lproj/InfoPlist.strings -------------------------------------------------------------------------------- /xctool/xctool-tests/TestData/tests-osx-test-bundle/libTestProject-Library-XCTest-Custom.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/facebookarchive/xctool/ae44fb64305eebb56109ce422b924549dff98046/xctool/xctool-tests/TestData/tests-osx-test-bundle/libTestProject-Library-XCTest-Custom.a -------------------------------------------------------------------------------- /xctool/xctool-tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /xctool/xctool/xctool-Prefix.pch: -------------------------------------------------------------------------------- 1 | // 2 | // Prefix header for all source files of the 'xctool' target in the 'xctool' project 3 | // 4 | 5 | #ifdef __OBJC__ 6 | #import 7 | #endif 8 | --------------------------------------------------------------------------------