├── .gitignore ├── LICENSE.txt ├── README.md ├── Sources ├── Utils │ ├── CTSBetterTouchToolWebServerConfiguration.h │ ├── CTSBetterTouchToolWebServerConfiguration.m │ ├── CTSService.h │ ├── CTSWeakify.h │ ├── NSDictionary+CTSCommandLineArguments.h │ ├── NSDictionary+CTSCommandLineArguments.m │ ├── NSURL+CTSBetterTouchToolWebServerEndpoint.h │ └── NSURL+CTSBetterTouchToolWebServerEndpoint.m ├── controlstrip-service │ ├── CTSControlStripService.h │ ├── CTSControlStripService.m │ └── main.m ├── eventkit-service │ ├── CTSEventKitService.h │ ├── CTSEventKitService.m │ ├── EKEvent+CTSVisibility.h │ ├── EKEvent+CTSVisibility.m │ ├── NSString+CTSReadableEventStatus.h │ ├── NSString+CTSReadableEventStatus.m │ └── main.m └── volume-service │ ├── CTSVolumeService.h │ ├── CTSVolumeService.m │ ├── NSString+CTSSerializedVolumeStatus.h │ ├── NSString+CTSSerializedVolumeStatus.m │ └── main.m ├── Tests ├── CTSBetterTouchToolWebServerConfigurationTests.m ├── CTSControlStripServiceTests.m ├── CTSEventKitServiceTests.m ├── CTSVolumeServiceTests.m ├── EKEventCTSVisibilityTests.m ├── Frameworks │ ├── OCHamcrest.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── OCHamcrest │ │ ├── Resources │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ ├── HCAllOf.h │ │ │ │ ├── HCAnyOf.h │ │ │ │ ├── HCArgumentCaptor.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 │ │ │ │ ├── HCIsCollectionContainingInRelativeOrder.h │ │ │ │ ├── HCIsCollectionOnlyContaining.h │ │ │ │ ├── HCIsDictionaryContaining.h │ │ │ │ ├── HCIsDictionaryContainingEntries.h │ │ │ │ ├── HCIsDictionaryContainingKey.h │ │ │ │ ├── HCIsDictionaryContainingValue.h │ │ │ │ ├── HCIsEmptyCollection.h │ │ │ │ ├── HCIsEqual.h │ │ │ │ ├── HCIsEqualCompressingWhiteSpace.h │ │ │ │ ├── HCIsEqualIgnoringCase.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 │ │ │ │ ├── HCTestFailureReporter.h │ │ │ │ ├── HCTestFailureReporterChain.h │ │ │ │ ├── HCThrowsException.h │ │ │ │ ├── HCWrapInMatcher.h │ │ │ │ └── OCHamcrest.h │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── OCHamcrest │ │ │ └── Resources │ │ │ │ └── Info.plist │ │ │ └── Current │ └── OCMockito.framework │ │ ├── Headers │ │ ├── Modules │ │ ├── OCMockito │ │ ├── Resources │ │ └── Versions │ │ ├── A │ │ ├── Headers │ │ │ ├── MKTBaseMockObject.h │ │ │ ├── MKTClassObjectMock.h │ │ │ ├── MKTNonObjectArgumentMatching.h │ │ │ ├── MKTObjectAndProtocolMock.h │ │ │ ├── MKTObjectMock.h │ │ │ ├── MKTOngoingStubbing.h │ │ │ ├── MKTProtocolMock.h │ │ │ ├── NSInvocation+OCMockito.h │ │ │ └── OCMockito.h │ │ ├── Modules │ │ │ └── module.modulemap │ │ ├── OCMockito │ │ └── Resources │ │ │ └── Info.plist │ │ └── Current ├── NSDictionaryCTSCommandLineArgumentsTests.m ├── NSStringCTSReadableEventStatusTests.m ├── NSStringCTSSerializedVolumeStatusTests.m ├── NSURLCTSBetterTouchToolWebServerEndpointTests.m └── Stubs │ ├── CTSAudioToolboxControlStripServiceTestStub.h │ ├── CTSAudioToolboxControlStripServiceTestStub.m │ ├── CTSAudioToolboxVolumeServiceTestStub.h │ ├── CTSAudioToolboxVolumeServiceTestStub.m │ ├── CTSCoreGraphicsEventControlStripServiceTestStub.h │ └── CTSCoreGraphicsEventControlStripServiceTestStub.m └── btt-services.xcodeproj └── project.pbxproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Utils/CTSBetterTouchToolWebServerConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/Utils/CTSBetterTouchToolWebServerConfiguration.h -------------------------------------------------------------------------------- /Sources/Utils/CTSBetterTouchToolWebServerConfiguration.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/Utils/CTSBetterTouchToolWebServerConfiguration.m -------------------------------------------------------------------------------- /Sources/Utils/CTSService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/Utils/CTSService.h -------------------------------------------------------------------------------- /Sources/Utils/CTSWeakify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/Utils/CTSWeakify.h -------------------------------------------------------------------------------- /Sources/Utils/NSDictionary+CTSCommandLineArguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/Utils/NSDictionary+CTSCommandLineArguments.h -------------------------------------------------------------------------------- /Sources/Utils/NSDictionary+CTSCommandLineArguments.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/Utils/NSDictionary+CTSCommandLineArguments.m -------------------------------------------------------------------------------- /Sources/Utils/NSURL+CTSBetterTouchToolWebServerEndpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/Utils/NSURL+CTSBetterTouchToolWebServerEndpoint.h -------------------------------------------------------------------------------- /Sources/Utils/NSURL+CTSBetterTouchToolWebServerEndpoint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/Utils/NSURL+CTSBetterTouchToolWebServerEndpoint.m -------------------------------------------------------------------------------- /Sources/controlstrip-service/CTSControlStripService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/controlstrip-service/CTSControlStripService.h -------------------------------------------------------------------------------- /Sources/controlstrip-service/CTSControlStripService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/controlstrip-service/CTSControlStripService.m -------------------------------------------------------------------------------- /Sources/controlstrip-service/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/controlstrip-service/main.m -------------------------------------------------------------------------------- /Sources/eventkit-service/CTSEventKitService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/eventkit-service/CTSEventKitService.h -------------------------------------------------------------------------------- /Sources/eventkit-service/CTSEventKitService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/eventkit-service/CTSEventKitService.m -------------------------------------------------------------------------------- /Sources/eventkit-service/EKEvent+CTSVisibility.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/eventkit-service/EKEvent+CTSVisibility.h -------------------------------------------------------------------------------- /Sources/eventkit-service/EKEvent+CTSVisibility.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/eventkit-service/EKEvent+CTSVisibility.m -------------------------------------------------------------------------------- /Sources/eventkit-service/NSString+CTSReadableEventStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/eventkit-service/NSString+CTSReadableEventStatus.h -------------------------------------------------------------------------------- /Sources/eventkit-service/NSString+CTSReadableEventStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/eventkit-service/NSString+CTSReadableEventStatus.m -------------------------------------------------------------------------------- /Sources/eventkit-service/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/eventkit-service/main.m -------------------------------------------------------------------------------- /Sources/volume-service/CTSVolumeService.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/volume-service/CTSVolumeService.h -------------------------------------------------------------------------------- /Sources/volume-service/CTSVolumeService.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/volume-service/CTSVolumeService.m -------------------------------------------------------------------------------- /Sources/volume-service/NSString+CTSSerializedVolumeStatus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/volume-service/NSString+CTSSerializedVolumeStatus.h -------------------------------------------------------------------------------- /Sources/volume-service/NSString+CTSSerializedVolumeStatus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/volume-service/NSString+CTSSerializedVolumeStatus.m -------------------------------------------------------------------------------- /Sources/volume-service/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Sources/volume-service/main.m -------------------------------------------------------------------------------- /Tests/CTSBetterTouchToolWebServerConfigurationTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/CTSBetterTouchToolWebServerConfigurationTests.m -------------------------------------------------------------------------------- /Tests/CTSControlStripServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/CTSControlStripServiceTests.m -------------------------------------------------------------------------------- /Tests/CTSEventKitServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/CTSEventKitServiceTests.m -------------------------------------------------------------------------------- /Tests/CTSVolumeServiceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/CTSVolumeServiceTests.m -------------------------------------------------------------------------------- /Tests/EKEventCTSVisibilityTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/EKEventCTSVisibilityTests.m -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/OCHamcrest: -------------------------------------------------------------------------------- 1 | Versions/Current/OCHamcrest -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCAllOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCAllOf.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCAnyOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCAnyOf.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCArgumentCaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCArgumentCaptor.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCAssertThat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCAssertThat.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCBaseDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCBaseDescription.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCBaseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCBaseMatcher.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCClassMatcher.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCCollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCCollect.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCConformsToProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCConformsToProtocol.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCDescribedAs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCDescribedAs.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCDescription.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCDiagnosingMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCDiagnosingMatcher.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCEvery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCEvery.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCHasCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCHasCount.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCHasDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCHasDescription.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCHasProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCHasProperty.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCInvocationMatcher.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIs.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsAnything.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsCloseTo.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContaining.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContainingInAnyOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContainingInAnyOrder.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContainingInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContainingInOrder.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContainingInRelativeOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionContainingInRelativeOrder.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionOnlyContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsCollectionOnlyContaining.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContaining.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContainingEntries.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContainingKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContainingKey.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContainingValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsDictionaryContainingValue.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsEmptyCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsEmptyCollection.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsEqual.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsEqualCompressingWhiteSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsEqualCompressingWhiteSpace.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsEqualIgnoringCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsEqualIgnoringCase.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsEqualToNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsEqualToNumber.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsIn.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsInstanceOf.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsNil.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsNot.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsSame.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsTrueFalse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsTrueFalse.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsTypeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCIsTypeOf.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCMatcher.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCNumberAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCNumberAssert.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCOrderingComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCOrderingComparison.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCRequireNonNilObject.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCSelfDescribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCSelfDescribing.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCStringContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCStringContains.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCStringContainsInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCStringContainsInOrder.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCStringDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCStringDescription.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCStringEndsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCStringEndsWith.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCStringStartsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCStringStartsWith.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCSubstringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCSubstringMatcher.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCTestFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCTestFailure.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCTestFailureReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCTestFailureReporter.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCTestFailureReporterChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCTestFailureReporterChain.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCThrowsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCThrowsException.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCWrapInMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/HCWrapInMatcher.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/OCHamcrest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Headers/OCHamcrest.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/OCHamcrest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/OCHamcrest -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCHamcrest.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Tests/Frameworks/OCHamcrest.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/OCMockito: -------------------------------------------------------------------------------- 1 | Versions/Current/OCMockito -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTBaseMockObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTBaseMockObject.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTClassObjectMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTClassObjectMock.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTNonObjectArgumentMatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTNonObjectArgumentMatching.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTObjectAndProtocolMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTObjectAndProtocolMock.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTObjectMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTObjectMock.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTOngoingStubbing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTOngoingStubbing.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTProtocolMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCMockito.framework/Versions/A/Headers/MKTProtocolMock.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/A/Headers/NSInvocation+OCMockito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCMockito.framework/Versions/A/Headers/NSInvocation+OCMockito.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/A/Headers/OCMockito.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCMockito.framework/Versions/A/Headers/OCMockito.h -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/A/Modules/module.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCMockito.framework/Versions/A/Modules/module.modulemap -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/A/OCMockito: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCMockito.framework/Versions/A/OCMockito -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/A/Resources/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Frameworks/OCMockito.framework/Versions/A/Resources/Info.plist -------------------------------------------------------------------------------- /Tests/Frameworks/OCMockito.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Tests/NSDictionaryCTSCommandLineArgumentsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/NSDictionaryCTSCommandLineArgumentsTests.m -------------------------------------------------------------------------------- /Tests/NSStringCTSReadableEventStatusTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/NSStringCTSReadableEventStatusTests.m -------------------------------------------------------------------------------- /Tests/NSStringCTSSerializedVolumeStatusTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/NSStringCTSSerializedVolumeStatusTests.m -------------------------------------------------------------------------------- /Tests/NSURLCTSBetterTouchToolWebServerEndpointTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/NSURLCTSBetterTouchToolWebServerEndpointTests.m -------------------------------------------------------------------------------- /Tests/Stubs/CTSAudioToolboxControlStripServiceTestStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Stubs/CTSAudioToolboxControlStripServiceTestStub.h -------------------------------------------------------------------------------- /Tests/Stubs/CTSAudioToolboxControlStripServiceTestStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Stubs/CTSAudioToolboxControlStripServiceTestStub.m -------------------------------------------------------------------------------- /Tests/Stubs/CTSAudioToolboxVolumeServiceTestStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Stubs/CTSAudioToolboxVolumeServiceTestStub.h -------------------------------------------------------------------------------- /Tests/Stubs/CTSAudioToolboxVolumeServiceTestStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Stubs/CTSAudioToolboxVolumeServiceTestStub.m -------------------------------------------------------------------------------- /Tests/Stubs/CTSCoreGraphicsEventControlStripServiceTestStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Stubs/CTSCoreGraphicsEventControlStripServiceTestStub.h -------------------------------------------------------------------------------- /Tests/Stubs/CTSCoreGraphicsEventControlStripServiceTestStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/Tests/Stubs/CTSCoreGraphicsEventControlStripServiceTestStub.m -------------------------------------------------------------------------------- /btt-services.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrewchidden/btt-services/HEAD/btt-services.xcodeproj/project.pbxproj --------------------------------------------------------------------------------