├── .github ├── dependabot.yml └── workflows │ ├── build.yml │ └── updateMarkdown.yml ├── .gitignore ├── .slather.yml ├── CHANGELOG.md ├── Cartfile.project ├── Examples ├── CustomDateMatcher-CocoaPods │ ├── Example.xcodeproj │ │ └── project.pbxproj │ ├── Example │ │ ├── Example.h │ │ └── Example.m │ ├── ExampleTests │ │ ├── ExampleTests-Info.plist │ │ ├── ExampleTests.m │ │ ├── IsGivenDayOfWeek.h │ │ └── IsGivenDayOfWeek.m │ ├── Podfile │ └── README.md ├── MacExample-CocoaPods │ ├── Example.xcodeproj │ │ └── project.pbxproj │ ├── Example │ │ ├── Example.h │ │ └── Example.m │ ├── ExampleTests │ │ ├── ExampleTests-Info.plist │ │ └── ExampleTests.m │ ├── Podfile │ └── README.md ├── MacExample-Framework │ ├── Example.xcodeproj │ │ └── project.pbxproj │ ├── Example │ │ ├── Example.h │ │ └── Example.m │ ├── ExampleTests │ │ ├── ExampleTests-Info.plist │ │ └── ExampleTests.m │ └── README.md ├── MacExample-SwiftPackageManager │ ├── Package.swift │ ├── README.md │ ├── Sources │ │ └── Example │ │ │ ├── Example.h │ │ │ └── Example.m │ └── Tests │ │ └── ExampleTests │ │ └── ExampleTests.m ├── iOSExample-Cocoapods │ ├── Example.xcodeproj │ │ └── project.pbxproj │ ├── Example │ │ ├── Example.h │ │ └── Example.m │ ├── ExampleTests │ │ ├── ExampleTests-Info.plist │ │ └── ExampleTests.m │ ├── Podfile │ └── README.md └── iOSExample-Framework │ ├── Example.xcodeproj │ └── project.pbxproj │ ├── Example │ ├── Example.h │ └── Example.m │ ├── ExampleTests │ ├── ExampleTests-Info.plist │ └── ExampleTests.m │ └── README.md ├── Gemfile ├── LICENSE.txt ├── OCHamcrest.podspec ├── OCHamcrest.xcodeproj ├── project.pbxproj └── xcshareddata │ └── xcschemes │ └── OCHamcrest.xcscheme ├── Package.swift ├── README.md ├── Resources ├── MakeDistribution.sh ├── OCHamcrest-Info.plist ├── Tests-Info.plist ├── XcodeTargets.xcconfig ├── XcodeWarnings.xcconfig └── makeXCFramework.sh ├── Sources └── OCHamcrest │ ├── Core │ ├── HCAssertThat.h │ ├── HCAssertThat.m │ ├── HCBaseDescription.h │ ├── HCBaseDescription.m │ ├── HCBaseMatcher.h │ ├── HCBaseMatcher.m │ ├── HCDescription.h │ ├── HCDiagnosingMatcher.h │ ├── HCDiagnosingMatcher.m │ ├── HCMatcher.h │ ├── HCSelfDescribing.h │ ├── HCStringDescription.h │ ├── HCStringDescription.m │ └── Helpers │ │ ├── HCCollect.h │ │ ├── HCCollect.m │ │ ├── HCInvocationMatcher.h │ │ ├── HCInvocationMatcher.m │ │ ├── HCRequireNonNilObject.h │ │ ├── HCRequireNonNilObject.m │ │ ├── HCRunloopRunner.h │ │ ├── HCRunloopRunner.m │ │ ├── HCWrapInMatcher.h │ │ ├── HCWrapInMatcher.m │ │ ├── NSInvocation+OCHamcrest.h │ │ ├── NSInvocation+OCHamcrest.m │ │ ├── ReturnValueGetters │ │ ├── HCBoolReturnGetter.h │ │ ├── HCBoolReturnGetter.m │ │ ├── HCCharReturnGetter.h │ │ ├── HCCharReturnGetter.m │ │ ├── HCDoubleReturnGetter.h │ │ ├── HCDoubleReturnGetter.m │ │ ├── HCFloatReturnGetter.h │ │ ├── HCFloatReturnGetter.m │ │ ├── HCIntReturnGetter.h │ │ ├── HCIntReturnGetter.m │ │ ├── HCLongLongReturnGetter.h │ │ ├── HCLongLongReturnGetter.m │ │ ├── HCLongReturnGetter.h │ │ ├── HCLongReturnGetter.m │ │ ├── HCObjectReturnGetter.h │ │ ├── HCObjectReturnGetter.m │ │ ├── HCReturnTypeHandlerChain.h │ │ ├── HCReturnTypeHandlerChain.m │ │ ├── HCReturnValueGetter.h │ │ ├── HCReturnValueGetter.m │ │ ├── HCShortReturnGetter.h │ │ ├── HCShortReturnGetter.m │ │ ├── HCUnsignedCharReturnGetter.h │ │ ├── HCUnsignedCharReturnGetter.m │ │ ├── HCUnsignedIntReturnGetter.h │ │ ├── HCUnsignedIntReturnGetter.m │ │ ├── HCUnsignedLongLongReturnGetter.h │ │ ├── HCUnsignedLongLongReturnGetter.m │ │ ├── HCUnsignedLongReturnGetter.h │ │ ├── HCUnsignedLongReturnGetter.m │ │ ├── HCUnsignedShortReturnGetter.h │ │ └── HCUnsignedShortReturnGetter.m │ │ └── TestFailureReporters │ │ ├── HCGenericTestFailureReporter.h │ │ ├── HCGenericTestFailureReporter.m │ │ ├── HCSenTestFailureReporter.h │ │ ├── HCSenTestFailureReporter.m │ │ ├── HCTestFailure.h │ │ ├── HCTestFailure.m │ │ ├── HCTestFailureReporter.h │ │ ├── HCTestFailureReporter.m │ │ ├── HCTestFailureReporterChain.h │ │ ├── HCTestFailureReporterChain.m │ │ ├── HCXCTestFailureReporter.h │ │ ├── HCXCTestFailureReporter.m │ │ ├── HCXCTestIssueFailureReporter.h │ │ └── HCXCTestIssueFailureReporter.m │ ├── Library │ ├── Collection │ │ ├── HCEvery.h │ │ ├── HCEvery.m │ │ ├── HCHasCount.h │ │ ├── HCHasCount.m │ │ ├── HCIsCollectionContaining.h │ │ ├── HCIsCollectionContaining.m │ │ ├── HCIsCollectionContainingInAnyOrder.h │ │ ├── HCIsCollectionContainingInAnyOrder.m │ │ ├── HCIsCollectionContainingInOrder.h │ │ ├── HCIsCollectionContainingInOrder.m │ │ ├── HCIsCollectionContainingInRelativeOrder.h │ │ ├── HCIsCollectionContainingInRelativeOrder.m │ │ ├── HCIsCollectionOnlyContaining.h │ │ ├── HCIsCollectionOnlyContaining.m │ │ ├── HCIsDictionaryContaining.h │ │ ├── HCIsDictionaryContaining.m │ │ ├── HCIsDictionaryContainingEntries.h │ │ ├── HCIsDictionaryContainingEntries.m │ │ ├── HCIsDictionaryContainingKey.h │ │ ├── HCIsDictionaryContainingKey.m │ │ ├── HCIsDictionaryContainingValue.h │ │ ├── HCIsDictionaryContainingValue.m │ │ ├── HCIsEmptyCollection.h │ │ ├── HCIsEmptyCollection.m │ │ ├── HCIsIn.h │ │ └── HCIsIn.m │ ├── Decorator │ │ ├── HCDescribedAs.h │ │ ├── HCDescribedAs.m │ │ ├── HCIs.h │ │ └── HCIs.m │ ├── Logical │ │ ├── HCAllOf.h │ │ ├── HCAllOf.m │ │ ├── HCAnyOf.h │ │ ├── HCAnyOf.m │ │ ├── HCIsAnything.h │ │ ├── HCIsAnything.m │ │ ├── HCIsNot.h │ │ └── HCIsNot.m │ ├── Number │ │ ├── HCIsCloseTo.h │ │ ├── HCIsCloseTo.m │ │ ├── HCIsEqualToNumber.h │ │ ├── HCIsEqualToNumber.m │ │ ├── HCIsTrueFalse.h │ │ ├── HCIsTrueFalse.m │ │ ├── HCNumberAssert.h │ │ ├── HCNumberAssert.m │ │ ├── HCOrderingComparison.h │ │ └── HCOrderingComparison.m │ ├── Object │ │ ├── HCArgumentCaptor.h │ │ ├── HCArgumentCaptor.m │ │ ├── HCClassMatcher.h │ │ ├── HCClassMatcher.m │ │ ├── HCConformsToProtocol.h │ │ ├── HCConformsToProtocol.m │ │ ├── HCHasDescription.h │ │ ├── HCHasDescription.m │ │ ├── HCHasProperty.h │ │ ├── HCHasProperty.m │ │ ├── HCIsEqual.h │ │ ├── HCIsEqual.m │ │ ├── HCIsInstanceOf.h │ │ ├── HCIsInstanceOf.m │ │ ├── HCIsNil.h │ │ ├── HCIsNil.m │ │ ├── HCIsSame.h │ │ ├── HCIsSame.m │ │ ├── HCIsTypeOf.h │ │ ├── HCIsTypeOf.m │ │ ├── HCThrowsException.h │ │ └── HCThrowsException.m │ └── Text │ │ ├── HCIsEqualCompressingWhiteSpace.h │ │ ├── HCIsEqualCompressingWhiteSpace.m │ │ ├── HCIsEqualIgnoringCase.h │ │ ├── HCIsEqualIgnoringCase.m │ │ ├── HCStringContains.h │ │ ├── HCStringContains.m │ │ ├── HCStringContainsInOrder.h │ │ ├── HCStringContainsInOrder.m │ │ ├── HCStringEndsWith.h │ │ ├── HCStringEndsWith.m │ │ ├── HCStringStartsWith.h │ │ ├── HCStringStartsWith.m │ │ ├── HCSubstringMatcher.h │ │ └── HCSubstringMatcher.m │ ├── OCHamcrest.h │ └── include │ └── OCHamcrest │ ├── 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 ├── Tests └── OCHamcrestTests │ ├── Collection │ ├── FakeWithCount.h │ ├── FakeWithCount.m │ ├── FakeWithoutCount.h │ ├── FakeWithoutCount.m │ ├── HCEveryTests.m │ ├── HCHasCountTests.m │ ├── HCIsCollectionContainingInAnyOrderTests.m │ ├── HCIsCollectionContainingInOrderTests.m │ ├── HCIsCollectionContainingInRelativeOrderTests.m │ ├── HCIsCollectionContainingTests.m │ ├── HCIsCollectionOnlyContainingTests.m │ ├── HCIsDictionaryContainingEntriesTests.m │ ├── HCIsDictionaryContainingKeyTests.m │ ├── HCIsDictionaryContainingTests.m │ ├── HCIsDictionaryContainingValueTests.m │ ├── HCIsEmptyCollectionTests.m │ ├── HCIsInTests.m │ ├── Mismatchable.h │ └── Mismatchable.m │ ├── Core │ ├── AssertWithTimeoutTests.m │ ├── DiagnosingMatcherTest.m │ ├── HCBaseMatcherTests.m │ ├── HCGenericTestFailureReporterTests.m │ ├── HCInvocationMatcherTests.m │ ├── HCSenTestFailureReporterTests.m │ ├── HCStringDescriptionTests.m │ ├── HCTestFailureReporterChainTests.m │ ├── HCWrapInMatcherTests.m │ ├── HCXCTestFailureReporterTests.m │ └── HCXCTestIssueFailureReporterTests.m │ ├── Decorator │ ├── HCDescribedAsTests.m │ ├── HCIsTests.m │ ├── NeverMatch.h │ └── NeverMatch.m │ ├── InterceptingTestCase.h │ ├── InterceptingTestCase.m │ ├── Logical │ ├── HCAllOfTests.m │ ├── HCAnyOfTests.m │ ├── HCIsAnythingTests.m │ └── HCIsNotTests.m │ ├── MatcherTestCase.h │ ├── MatcherTestCase.m │ ├── Number │ ├── HCIsCloseToTests.m │ ├── HCIsEqualToNumberTests.m │ ├── HCIsTrueFalseTests.m │ ├── HCNumberAssertTests.m │ └── HCOrderingComparisonTests.m │ ├── Object │ ├── HCArgumentCaptorTests.m │ ├── HCConformsToProtocolTests.m │ ├── HCHasDescriptionTests.m │ ├── HCHasPropertyTests.m │ ├── HCIsEqualTests.m │ ├── HCIsInstanceOfTests.m │ ├── HCIsNilTests.m │ ├── HCIsSameTests.m │ ├── HCIsTypeOfTests.m │ ├── HCThrowsExceptionTests.m │ ├── SomeClassAndSubclass.h │ └── SomeClassAndSubclass.m │ └── Text │ ├── HCIsEqualCompressingWhiteSpaceTests.m │ ├── HCIsEqualIgnoringCaseTests.m │ ├── HCStringContainsInOrderTests.m │ ├── HCStringContainsTests.m │ ├── HCStringEndsWithTests.m │ └── HCStringStartsWithTests.m ├── mdsnippets.json └── merge_dependabot.sh /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/updateMarkdown.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/.github/workflows/updateMarkdown.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/.gitignore -------------------------------------------------------------------------------- /.slather.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/.slather.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cartfile.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Cartfile.project -------------------------------------------------------------------------------- /Examples/CustomDateMatcher-CocoaPods/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/CustomDateMatcher-CocoaPods/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/CustomDateMatcher-CocoaPods/Example/Example.h: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | 3 | @interface Example : NSObject 4 | @end 5 | -------------------------------------------------------------------------------- /Examples/CustomDateMatcher-CocoaPods/Example/Example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/CustomDateMatcher-CocoaPods/Example/Example.m -------------------------------------------------------------------------------- /Examples/CustomDateMatcher-CocoaPods/ExampleTests/ExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/CustomDateMatcher-CocoaPods/ExampleTests/ExampleTests-Info.plist -------------------------------------------------------------------------------- /Examples/CustomDateMatcher-CocoaPods/ExampleTests/ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/CustomDateMatcher-CocoaPods/ExampleTests/ExampleTests.m -------------------------------------------------------------------------------- /Examples/CustomDateMatcher-CocoaPods/ExampleTests/IsGivenDayOfWeek.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/CustomDateMatcher-CocoaPods/ExampleTests/IsGivenDayOfWeek.h -------------------------------------------------------------------------------- /Examples/CustomDateMatcher-CocoaPods/ExampleTests/IsGivenDayOfWeek.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/CustomDateMatcher-CocoaPods/ExampleTests/IsGivenDayOfWeek.m -------------------------------------------------------------------------------- /Examples/CustomDateMatcher-CocoaPods/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/CustomDateMatcher-CocoaPods/Podfile -------------------------------------------------------------------------------- /Examples/CustomDateMatcher-CocoaPods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/CustomDateMatcher-CocoaPods/README.md -------------------------------------------------------------------------------- /Examples/MacExample-CocoaPods/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-CocoaPods/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/MacExample-CocoaPods/Example/Example.h: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | 3 | @interface Example : NSObject 4 | @end 5 | -------------------------------------------------------------------------------- /Examples/MacExample-CocoaPods/Example/Example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-CocoaPods/Example/Example.m -------------------------------------------------------------------------------- /Examples/MacExample-CocoaPods/ExampleTests/ExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-CocoaPods/ExampleTests/ExampleTests-Info.plist -------------------------------------------------------------------------------- /Examples/MacExample-CocoaPods/ExampleTests/ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-CocoaPods/ExampleTests/ExampleTests.m -------------------------------------------------------------------------------- /Examples/MacExample-CocoaPods/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-CocoaPods/Podfile -------------------------------------------------------------------------------- /Examples/MacExample-CocoaPods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-CocoaPods/README.md -------------------------------------------------------------------------------- /Examples/MacExample-Framework/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-Framework/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/MacExample-Framework/Example/Example.h: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | 3 | @interface Example : NSObject 4 | @end 5 | -------------------------------------------------------------------------------- /Examples/MacExample-Framework/Example/Example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-Framework/Example/Example.m -------------------------------------------------------------------------------- /Examples/MacExample-Framework/ExampleTests/ExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-Framework/ExampleTests/ExampleTests-Info.plist -------------------------------------------------------------------------------- /Examples/MacExample-Framework/ExampleTests/ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-Framework/ExampleTests/ExampleTests.m -------------------------------------------------------------------------------- /Examples/MacExample-Framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-Framework/README.md -------------------------------------------------------------------------------- /Examples/MacExample-SwiftPackageManager/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-SwiftPackageManager/Package.swift -------------------------------------------------------------------------------- /Examples/MacExample-SwiftPackageManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-SwiftPackageManager/README.md -------------------------------------------------------------------------------- /Examples/MacExample-SwiftPackageManager/Sources/Example/Example.h: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | 3 | @interface Example : NSObject 4 | @end 5 | -------------------------------------------------------------------------------- /Examples/MacExample-SwiftPackageManager/Sources/Example/Example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-SwiftPackageManager/Sources/Example/Example.m -------------------------------------------------------------------------------- /Examples/MacExample-SwiftPackageManager/Tests/ExampleTests/ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/MacExample-SwiftPackageManager/Tests/ExampleTests/ExampleTests.m -------------------------------------------------------------------------------- /Examples/iOSExample-Cocoapods/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/iOSExample-Cocoapods/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/iOSExample-Cocoapods/Example/Example.h: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | 3 | @interface Example : NSObject 4 | @end 5 | -------------------------------------------------------------------------------- /Examples/iOSExample-Cocoapods/Example/Example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/iOSExample-Cocoapods/Example/Example.m -------------------------------------------------------------------------------- /Examples/iOSExample-Cocoapods/ExampleTests/ExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/iOSExample-Cocoapods/ExampleTests/ExampleTests-Info.plist -------------------------------------------------------------------------------- /Examples/iOSExample-Cocoapods/ExampleTests/ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/iOSExample-Cocoapods/ExampleTests/ExampleTests.m -------------------------------------------------------------------------------- /Examples/iOSExample-Cocoapods/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/iOSExample-Cocoapods/Podfile -------------------------------------------------------------------------------- /Examples/iOSExample-Cocoapods/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/iOSExample-Cocoapods/README.md -------------------------------------------------------------------------------- /Examples/iOSExample-Framework/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/iOSExample-Framework/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/iOSExample-Framework/Example/Example.h: -------------------------------------------------------------------------------- 1 | @import Foundation; 2 | 3 | @interface Example : NSObject 4 | @end 5 | -------------------------------------------------------------------------------- /Examples/iOSExample-Framework/Example/Example.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/iOSExample-Framework/Example/Example.m -------------------------------------------------------------------------------- /Examples/iOSExample-Framework/ExampleTests/ExampleTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/iOSExample-Framework/ExampleTests/ExampleTests-Info.plist -------------------------------------------------------------------------------- /Examples/iOSExample-Framework/ExampleTests/ExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/iOSExample-Framework/ExampleTests/ExampleTests.m -------------------------------------------------------------------------------- /Examples/iOSExample-Framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Examples/iOSExample-Framework/README.md -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'slather' 4 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /OCHamcrest.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/OCHamcrest.podspec -------------------------------------------------------------------------------- /OCHamcrest.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/OCHamcrest.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /OCHamcrest.xcodeproj/xcshareddata/xcschemes/OCHamcrest.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/OCHamcrest.xcodeproj/xcshareddata/xcschemes/OCHamcrest.xcscheme -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Package.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/README.md -------------------------------------------------------------------------------- /Resources/MakeDistribution.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Resources/MakeDistribution.sh -------------------------------------------------------------------------------- /Resources/OCHamcrest-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Resources/OCHamcrest-Info.plist -------------------------------------------------------------------------------- /Resources/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Resources/Tests-Info.plist -------------------------------------------------------------------------------- /Resources/XcodeTargets.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Resources/XcodeTargets.xcconfig -------------------------------------------------------------------------------- /Resources/XcodeWarnings.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Resources/XcodeWarnings.xcconfig -------------------------------------------------------------------------------- /Resources/makeXCFramework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Resources/makeXCFramework.sh -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCAssertThat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCAssertThat.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCAssertThat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCAssertThat.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCBaseDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCBaseDescription.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCBaseDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCBaseDescription.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCBaseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCBaseMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCBaseMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCBaseMatcher.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCDescription.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCDiagnosingMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCDiagnosingMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCDiagnosingMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCDiagnosingMatcher.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCSelfDescribing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCSelfDescribing.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCStringDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCStringDescription.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/HCStringDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/HCStringDescription.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/HCCollect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/HCCollect.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/HCCollect.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/HCCollect.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/HCInvocationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/HCInvocationMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/HCInvocationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/HCInvocationMatcher.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/HCRequireNonNilObject.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/HCRequireNonNilObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/HCRequireNonNilObject.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/HCRunloopRunner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/HCRunloopRunner.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/HCRunloopRunner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/HCRunloopRunner.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/HCWrapInMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/HCWrapInMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/HCWrapInMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/HCWrapInMatcher.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/NSInvocation+OCHamcrest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/NSInvocation+OCHamcrest.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/NSInvocation+OCHamcrest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/NSInvocation+OCHamcrest.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCBoolReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCCharReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCDoubleReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCFloatReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCIntReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCLongLongReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCLongReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCObjectReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCReturnTypeHandlerChain.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCReturnValueGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCShortReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedCharReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedIntReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedLongLongReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedLongReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/ReturnValueGetters/HCUnsignedShortReturnGetter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCGenericTestFailureReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCGenericTestFailureReporter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCGenericTestFailureReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCGenericTestFailureReporter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCSenTestFailureReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCSenTestFailureReporter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCSenTestFailureReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCSenTestFailureReporter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCTestFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCTestFailure.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCTestFailure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCTestFailure.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCTestFailureReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCTestFailureReporter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCTestFailureReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCTestFailureReporter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCTestFailureReporterChain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCTestFailureReporterChain.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCTestFailureReporterChain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCTestFailureReporterChain.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCXCTestFailureReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCXCTestFailureReporter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCXCTestFailureReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCXCTestFailureReporter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCXCTestIssueFailureReporter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCXCTestIssueFailureReporter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCXCTestIssueFailureReporter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Core/Helpers/TestFailureReporters/HCXCTestIssueFailureReporter.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCEvery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCEvery.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCEvery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCEvery.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCHasCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCHasCount.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCHasCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCHasCount.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsCollectionContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsCollectionContaining.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsCollectionContaining.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsCollectionContaining.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsCollectionContainingInAnyOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsCollectionContainingInAnyOrder.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsCollectionContainingInAnyOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsCollectionContainingInAnyOrder.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsCollectionContainingInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsCollectionContainingInOrder.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsCollectionContainingInOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsCollectionContainingInOrder.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsCollectionContainingInRelativeOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsCollectionContainingInRelativeOrder.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsCollectionContainingInRelativeOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsCollectionContainingInRelativeOrder.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsCollectionOnlyContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsCollectionOnlyContaining.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsCollectionOnlyContaining.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsCollectionOnlyContaining.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsDictionaryContaining.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsDictionaryContaining.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsDictionaryContaining.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsDictionaryContaining.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsDictionaryContainingEntries.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsDictionaryContainingEntries.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsDictionaryContainingEntries.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsDictionaryContainingEntries.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsDictionaryContainingKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsDictionaryContainingKey.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsDictionaryContainingKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsDictionaryContainingKey.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsDictionaryContainingValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsDictionaryContainingValue.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsDictionaryContainingValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsDictionaryContainingValue.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsEmptyCollection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsEmptyCollection.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsEmptyCollection.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsEmptyCollection.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsIn.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Collection/HCIsIn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Collection/HCIsIn.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Decorator/HCDescribedAs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Decorator/HCDescribedAs.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Decorator/HCDescribedAs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Decorator/HCDescribedAs.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Decorator/HCIs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Decorator/HCIs.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Decorator/HCIs.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Decorator/HCIs.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Logical/HCAllOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Logical/HCAllOf.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Logical/HCAllOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Logical/HCAllOf.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Logical/HCAnyOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Logical/HCAnyOf.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Logical/HCAnyOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Logical/HCAnyOf.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Logical/HCIsAnything.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Logical/HCIsAnything.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Logical/HCIsAnything.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Logical/HCIsAnything.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Logical/HCIsNot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Logical/HCIsNot.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Logical/HCIsNot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Logical/HCIsNot.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Number/HCIsCloseTo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Number/HCIsCloseTo.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Number/HCIsCloseTo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Number/HCIsCloseTo.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Number/HCIsEqualToNumber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Number/HCIsEqualToNumber.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Number/HCIsEqualToNumber.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Number/HCIsEqualToNumber.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Number/HCIsTrueFalse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Number/HCIsTrueFalse.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Number/HCIsTrueFalse.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Number/HCIsTrueFalse.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Number/HCNumberAssert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Number/HCNumberAssert.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Number/HCNumberAssert.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Number/HCNumberAssert.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Number/HCOrderingComparison.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Number/HCOrderingComparison.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Number/HCOrderingComparison.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Number/HCOrderingComparison.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCArgumentCaptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCArgumentCaptor.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCArgumentCaptor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCArgumentCaptor.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCClassMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCClassMatcher.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCConformsToProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCConformsToProtocol.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCConformsToProtocol.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCConformsToProtocol.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCHasDescription.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCHasDescription.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCHasDescription.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCHasDescription.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCHasProperty.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCHasProperty.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCHasProperty.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCHasProperty.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCIsEqual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCIsEqual.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCIsEqual.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCIsEqual.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCIsInstanceOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCIsInstanceOf.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCIsInstanceOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCIsInstanceOf.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCIsNil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCIsNil.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCIsNil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCIsNil.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCIsSame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCIsSame.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCIsSame.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCIsSame.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCIsTypeOf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCIsTypeOf.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCIsTypeOf.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCIsTypeOf.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCThrowsException.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCThrowsException.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Object/HCThrowsException.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Object/HCThrowsException.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCIsEqualCompressingWhiteSpace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCIsEqualCompressingWhiteSpace.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCIsEqualCompressingWhiteSpace.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCIsEqualCompressingWhiteSpace.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCIsEqualIgnoringCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCIsEqualIgnoringCase.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCIsEqualIgnoringCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCIsEqualIgnoringCase.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCStringContains.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCStringContains.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCStringContains.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCStringContains.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCStringContainsInOrder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCStringContainsInOrder.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCStringContainsInOrder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCStringContainsInOrder.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCStringEndsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCStringEndsWith.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCStringEndsWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCStringEndsWith.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCStringStartsWith.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCStringStartsWith.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCStringStartsWith.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCStringStartsWith.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCSubstringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCSubstringMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/Library/Text/HCSubstringMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/Library/Text/HCSubstringMatcher.m -------------------------------------------------------------------------------- /Sources/OCHamcrest/OCHamcrest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Sources/OCHamcrest/OCHamcrest.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCAllOf.h: -------------------------------------------------------------------------------- 1 | ../../Library/Logical/HCAllOf.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCAnyOf.h: -------------------------------------------------------------------------------- 1 | ../../Library/Logical/HCAnyOf.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCArgumentCaptor.h: -------------------------------------------------------------------------------- 1 | ../../Library/Object/HCArgumentCaptor.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCAssertThat.h: -------------------------------------------------------------------------------- 1 | ../../Core/HCAssertThat.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCBaseDescription.h: -------------------------------------------------------------------------------- 1 | ../../Core/HCBaseDescription.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCBaseMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Core/HCBaseMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Library/Object/HCClassMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCCollect.h: -------------------------------------------------------------------------------- 1 | ../../Core/Helpers/HCCollect.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCConformsToProtocol.h: -------------------------------------------------------------------------------- 1 | ../../Library/Object/HCConformsToProtocol.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCDescribedAs.h: -------------------------------------------------------------------------------- 1 | ../../Library/Decorator/HCDescribedAs.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCDescription.h: -------------------------------------------------------------------------------- 1 | ../../Core/HCDescription.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCDiagnosingMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Core/HCDiagnosingMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCEvery.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCEvery.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCHasCount.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCHasCount.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCHasDescription.h: -------------------------------------------------------------------------------- 1 | ../../Library/Object/HCHasDescription.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCHasProperty.h: -------------------------------------------------------------------------------- 1 | ../../Library/Object/HCHasProperty.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCInvocationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Core/Helpers/HCInvocationMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIs.h: -------------------------------------------------------------------------------- 1 | ../../Library/Decorator/HCIs.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsAnything.h: -------------------------------------------------------------------------------- 1 | ../../Library/Logical/HCIsAnything.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsCloseTo.h: -------------------------------------------------------------------------------- 1 | ../../Library/Number/HCIsCloseTo.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsCollectionContaining.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCIsCollectionContaining.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsCollectionContainingInAnyOrder.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCIsCollectionContainingInAnyOrder.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsCollectionContainingInOrder.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCIsCollectionContainingInOrder.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsCollectionContainingInRelativeOrder.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCIsCollectionContainingInRelativeOrder.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsCollectionOnlyContaining.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCIsCollectionOnlyContaining.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsDictionaryContaining.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCIsDictionaryContaining.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsDictionaryContainingEntries.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCIsDictionaryContainingEntries.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsDictionaryContainingKey.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCIsDictionaryContainingKey.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsDictionaryContainingValue.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCIsDictionaryContainingValue.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsEmptyCollection.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCIsEmptyCollection.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsEqual.h: -------------------------------------------------------------------------------- 1 | ../../Library/Object/HCIsEqual.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsEqualCompressingWhiteSpace.h: -------------------------------------------------------------------------------- 1 | ../../Library/Text/HCIsEqualCompressingWhiteSpace.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsEqualIgnoringCase.h: -------------------------------------------------------------------------------- 1 | ../../Library/Text/HCIsEqualIgnoringCase.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsEqualToNumber.h: -------------------------------------------------------------------------------- 1 | ../../Library/Number/HCIsEqualToNumber.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsIn.h: -------------------------------------------------------------------------------- 1 | ../../Library/Collection/HCIsIn.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsInstanceOf.h: -------------------------------------------------------------------------------- 1 | ../../Library/Object/HCIsInstanceOf.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsNil.h: -------------------------------------------------------------------------------- 1 | ../../Library/Object/HCIsNil.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsNot.h: -------------------------------------------------------------------------------- 1 | ../../Library/Logical/HCIsNot.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsSame.h: -------------------------------------------------------------------------------- 1 | ../../Library/Object/HCIsSame.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsTrueFalse.h: -------------------------------------------------------------------------------- 1 | ../../Library/Number/HCIsTrueFalse.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCIsTypeOf.h: -------------------------------------------------------------------------------- 1 | ../../Library/Object/HCIsTypeOf.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Core/HCMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCNumberAssert.h: -------------------------------------------------------------------------------- 1 | ../../Library/Number/HCNumberAssert.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCOrderingComparison.h: -------------------------------------------------------------------------------- 1 | ../../Library/Number/HCOrderingComparison.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCRequireNonNilObject.h: -------------------------------------------------------------------------------- 1 | ../../Core/Helpers/HCRequireNonNilObject.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCSelfDescribing.h: -------------------------------------------------------------------------------- 1 | ../../Core/HCSelfDescribing.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCStringContains.h: -------------------------------------------------------------------------------- 1 | ../../Library/Text/HCStringContains.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCStringContainsInOrder.h: -------------------------------------------------------------------------------- 1 | ../../Library/Text/HCStringContainsInOrder.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCStringDescription.h: -------------------------------------------------------------------------------- 1 | ../../Core/HCStringDescription.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCStringEndsWith.h: -------------------------------------------------------------------------------- 1 | ../../Library/Text/HCStringEndsWith.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCStringStartsWith.h: -------------------------------------------------------------------------------- 1 | ../../Library/Text/HCStringStartsWith.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCSubstringMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Library/Text/HCSubstringMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCTestFailure.h: -------------------------------------------------------------------------------- 1 | ../../Core/Helpers/TestFailureReporters/HCTestFailure.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCTestFailureReporter.h: -------------------------------------------------------------------------------- 1 | ../../Core/Helpers/TestFailureReporters/HCTestFailureReporter.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCTestFailureReporterChain.h: -------------------------------------------------------------------------------- 1 | ../../Core/Helpers/TestFailureReporters/HCTestFailureReporterChain.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCThrowsException.h: -------------------------------------------------------------------------------- 1 | ../../Library/Object/HCThrowsException.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/HCWrapInMatcher.h: -------------------------------------------------------------------------------- 1 | ../../Core/Helpers/HCWrapInMatcher.h -------------------------------------------------------------------------------- /Sources/OCHamcrest/include/OCHamcrest/OCHamcrest.h: -------------------------------------------------------------------------------- 1 | ../../OCHamcrest.h -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/FakeWithCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/FakeWithCount.h -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/FakeWithCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/FakeWithCount.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/FakeWithoutCount.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/FakeWithoutCount.h -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/FakeWithoutCount.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/FakeWithoutCount.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCEveryTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCEveryTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCHasCountTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCHasCountTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCIsCollectionContainingInAnyOrderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCIsCollectionContainingInAnyOrderTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCIsCollectionContainingInOrderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCIsCollectionContainingInOrderTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCIsCollectionContainingInRelativeOrderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCIsCollectionContainingInRelativeOrderTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCIsCollectionContainingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCIsCollectionContainingTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCIsCollectionOnlyContainingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCIsCollectionOnlyContainingTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCIsDictionaryContainingEntriesTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCIsDictionaryContainingEntriesTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCIsDictionaryContainingKeyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCIsDictionaryContainingKeyTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCIsDictionaryContainingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCIsDictionaryContainingTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCIsDictionaryContainingValueTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCIsDictionaryContainingValueTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCIsEmptyCollectionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCIsEmptyCollectionTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/HCIsInTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/HCIsInTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/Mismatchable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/Mismatchable.h -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Collection/Mismatchable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Collection/Mismatchable.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Core/AssertWithTimeoutTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Core/AssertWithTimeoutTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Core/DiagnosingMatcherTest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Core/DiagnosingMatcherTest.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Core/HCBaseMatcherTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Core/HCBaseMatcherTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Core/HCGenericTestFailureReporterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Core/HCGenericTestFailureReporterTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Core/HCInvocationMatcherTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Core/HCInvocationMatcherTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Core/HCSenTestFailureReporterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Core/HCSenTestFailureReporterTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Core/HCStringDescriptionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Core/HCStringDescriptionTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Core/HCTestFailureReporterChainTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Core/HCTestFailureReporterChainTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Core/HCWrapInMatcherTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Core/HCWrapInMatcherTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Core/HCXCTestFailureReporterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Core/HCXCTestFailureReporterTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Core/HCXCTestIssueFailureReporterTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Core/HCXCTestIssueFailureReporterTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Decorator/HCDescribedAsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Decorator/HCDescribedAsTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Decorator/HCIsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Decorator/HCIsTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Decorator/NeverMatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Decorator/NeverMatch.h -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Decorator/NeverMatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Decorator/NeverMatch.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/InterceptingTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/InterceptingTestCase.h -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/InterceptingTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/InterceptingTestCase.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Logical/HCAllOfTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Logical/HCAllOfTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Logical/HCAnyOfTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Logical/HCAnyOfTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Logical/HCIsAnythingTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Logical/HCIsAnythingTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Logical/HCIsNotTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Logical/HCIsNotTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/MatcherTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/MatcherTestCase.h -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/MatcherTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/MatcherTestCase.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Number/HCIsCloseToTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Number/HCIsCloseToTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Number/HCIsEqualToNumberTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Number/HCIsEqualToNumberTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Number/HCIsTrueFalseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Number/HCIsTrueFalseTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Number/HCNumberAssertTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Number/HCNumberAssertTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Number/HCOrderingComparisonTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Number/HCOrderingComparisonTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Object/HCArgumentCaptorTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Object/HCArgumentCaptorTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Object/HCConformsToProtocolTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Object/HCConformsToProtocolTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Object/HCHasDescriptionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Object/HCHasDescriptionTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Object/HCHasPropertyTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Object/HCHasPropertyTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Object/HCIsEqualTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Object/HCIsEqualTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Object/HCIsInstanceOfTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Object/HCIsInstanceOfTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Object/HCIsNilTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Object/HCIsNilTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Object/HCIsSameTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Object/HCIsSameTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Object/HCIsTypeOfTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Object/HCIsTypeOfTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Object/HCThrowsExceptionTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Object/HCThrowsExceptionTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Object/SomeClassAndSubclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Object/SomeClassAndSubclass.h -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Object/SomeClassAndSubclass.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Object/SomeClassAndSubclass.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Text/HCIsEqualCompressingWhiteSpaceTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Text/HCIsEqualCompressingWhiteSpaceTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Text/HCIsEqualIgnoringCaseTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Text/HCIsEqualIgnoringCaseTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Text/HCStringContainsInOrderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Text/HCStringContainsInOrderTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Text/HCStringContainsTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Text/HCStringContainsTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Text/HCStringEndsWithTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Text/HCStringEndsWithTests.m -------------------------------------------------------------------------------- /Tests/OCHamcrestTests/Text/HCStringStartsWithTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/Tests/OCHamcrestTests/Text/HCStringStartsWithTests.m -------------------------------------------------------------------------------- /mdsnippets.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/mdsnippets.json -------------------------------------------------------------------------------- /merge_dependabot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hamcrest/OCHamcrest/HEAD/merge_dependabot.sh --------------------------------------------------------------------------------