├── .gitignore ├── Example ├── AXMagicIdentifiers.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── AXMagicIdentifiers-Example.xcscheme ├── AXMagicIdentifiers.xcworkspace │ └── contents.xcworkspacedata ├── AXMagicIdentifiers │ ├── AXAppDelegate.h │ ├── AXAppDelegate.m │ ├── AXBtnsViewController.h │ ├── AXBtnsViewController.m │ ├── AXMagicIdentifiers-Info.plist │ ├── AXMagicIdentifiers-Prefix.pch │ ├── AXOtherViewController.h │ ├── AXOtherViewController.m │ ├── AXTableViewCell.h │ ├── AXTableViewCell.m │ ├── AXTableViewController.h │ ├── AXTableViewController.m │ ├── AXViewControllerWithTable.h │ ├── AXViewControllerWithTable.m │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Main.Storyboard │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Podfile ├── Podfile.lock ├── Pods │ ├── FBSnapshotTestCase │ │ ├── FBSnapshotTestCase │ │ │ ├── FBSnapshotTestCase.h │ │ │ ├── FBSnapshotTestCase.m │ │ │ ├── FBSnapshotTestCasePlatform.h │ │ │ ├── FBSnapshotTestCasePlatform.m │ │ │ ├── FBSnapshotTestController.h │ │ │ ├── FBSnapshotTestController.m │ │ │ ├── UIImage+Compare.h │ │ │ ├── UIImage+Compare.m │ │ │ ├── UIImage+Diff.h │ │ │ └── UIImage+Diff.m │ │ ├── LICENSE │ │ └── README.md │ ├── Headers │ │ ├── Private │ │ │ ├── AXMagicIdentifiers │ │ │ │ ├── AXMagicIdentifiers.h │ │ │ │ ├── UIButton+MagicId.h │ │ │ │ ├── UICollectionView+MagicId.h │ │ │ │ ├── UIPageControl+MagicId.h │ │ │ │ ├── UIPickerView+MagicId.h │ │ │ │ ├── UISwitch+MagicId.h │ │ │ │ ├── UITableView+MagicId.h │ │ │ │ ├── UITextField+MagicId.h │ │ │ │ ├── UITextView+MagicId.h │ │ │ │ ├── UIView+MagicId.h │ │ │ │ └── UIViewController+MagicId.h │ │ │ ├── FBSnapshotTestCase │ │ │ │ ├── FBSnapshotTestCase.h │ │ │ │ ├── FBSnapshotTestCasePlatform.h │ │ │ │ ├── FBSnapshotTestController.h │ │ │ │ ├── UIImage+Compare.h │ │ │ │ └── UIImage+Diff.h │ │ │ ├── JRSwizzle │ │ │ │ └── JRSwizzle.h │ │ │ └── Kiwi │ │ │ │ ├── KWAfterAllNode.h │ │ │ │ ├── KWAfterEachNode.h │ │ │ │ ├── KWAny.h │ │ │ │ ├── KWAsyncVerifier.h │ │ │ │ ├── KWBeBetweenMatcher.h │ │ │ │ ├── KWBeEmptyMatcher.h │ │ │ │ ├── KWBeIdenticalToMatcher.h │ │ │ │ ├── KWBeKindOfClassMatcher.h │ │ │ │ ├── KWBeMemberOfClassMatcher.h │ │ │ │ ├── KWBeSubclassOfClassMatcher.h │ │ │ │ ├── KWBeTrueMatcher.h │ │ │ │ ├── KWBeWithinMatcher.h │ │ │ │ ├── KWBeZeroMatcher.h │ │ │ │ ├── KWBeforeAllNode.h │ │ │ │ ├── KWBeforeEachNode.h │ │ │ │ ├── KWBlock.h │ │ │ │ ├── KWBlockNode.h │ │ │ │ ├── KWBlockRaiseMatcher.h │ │ │ │ ├── KWCallSite.h │ │ │ │ ├── KWCaptureSpy.h │ │ │ │ ├── KWChangeMatcher.h │ │ │ │ ├── KWConformToProtocolMatcher.h │ │ │ │ ├── KWContainMatcher.h │ │ │ │ ├── KWContainStringMatcher.h │ │ │ │ ├── KWContextNode.h │ │ │ │ ├── KWCountType.h │ │ │ │ ├── KWDeviceInfo.h │ │ │ │ ├── KWEqualMatcher.h │ │ │ │ ├── KWExample.h │ │ │ │ ├── KWExampleDelegate.h │ │ │ │ ├── KWExampleNode.h │ │ │ │ ├── KWExampleNodeVisitor.h │ │ │ │ ├── KWExampleSuite.h │ │ │ │ ├── KWExampleSuiteBuilder.h │ │ │ │ ├── KWExistVerifier.h │ │ │ │ ├── KWExpectationType.h │ │ │ │ ├── KWFailure.h │ │ │ │ ├── KWFormatter.h │ │ │ │ ├── KWFutureObject.h │ │ │ │ ├── KWGenericMatchEvaluator.h │ │ │ │ ├── KWGenericMatcher.h │ │ │ │ ├── KWGenericMatchingAdditions.h │ │ │ │ ├── KWHaveMatcher.h │ │ │ │ ├── KWHaveValueMatcher.h │ │ │ │ ├── KWInequalityMatcher.h │ │ │ │ ├── KWIntercept.h │ │ │ │ ├── KWInvocationCapturer.h │ │ │ │ ├── KWItNode.h │ │ │ │ ├── KWLet.h │ │ │ │ ├── KWLetNode.h │ │ │ │ ├── KWMatchVerifier.h │ │ │ │ ├── KWMatcher.h │ │ │ │ ├── KWMatcherFactory.h │ │ │ │ ├── KWMatchers.h │ │ │ │ ├── KWMatching.h │ │ │ │ ├── KWMessagePattern.h │ │ │ │ ├── KWMessageSpying.h │ │ │ │ ├── KWMessageTracker.h │ │ │ │ ├── KWMock.h │ │ │ │ ├── KWNilMatcher.h │ │ │ │ ├── KWNotificationMatcher.h │ │ │ │ ├── KWNull.h │ │ │ │ ├── KWObjCUtilities.h │ │ │ │ ├── KWPendingNode.h │ │ │ │ ├── KWProbe.h │ │ │ │ ├── KWProbePoller.h │ │ │ │ ├── KWReceiveMatcher.h │ │ │ │ ├── KWRegisterMatchersNode.h │ │ │ │ ├── KWRegularExpressionPatternMatcher.h │ │ │ │ ├── KWReporting.h │ │ │ │ ├── KWRespondToSelectorMatcher.h │ │ │ │ ├── KWSpec.h │ │ │ │ ├── KWStringContainsMatcher.h │ │ │ │ ├── KWStringPrefixMatcher.h │ │ │ │ ├── KWStringUtilities.h │ │ │ │ ├── KWStub.h │ │ │ │ ├── KWSuiteConfigurationBase.h │ │ │ │ ├── KWSymbolicator.h │ │ │ │ ├── KWUserDefinedMatcher.h │ │ │ │ ├── KWValue.h │ │ │ │ ├── KWVerifying.h │ │ │ │ ├── KWWorkarounds.h │ │ │ │ ├── Kiwi.h │ │ │ │ ├── KiwiBlockMacros.h │ │ │ │ ├── KiwiConfiguration.h │ │ │ │ ├── KiwiMacros.h │ │ │ │ ├── NSInvocation+KiwiAdditions.h │ │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ │ ├── NSMethodSignature+KiwiAdditions.h │ │ │ │ ├── NSNumber+KiwiAdditions.h │ │ │ │ ├── NSObject+KiwiMockAdditions.h │ │ │ │ ├── NSObject+KiwiSpyAdditions.h │ │ │ │ ├── NSObject+KiwiStubAdditions.h │ │ │ │ ├── NSObject+KiwiVerifierAdditions.h │ │ │ │ ├── NSProxy+KiwiVerifierAdditions.h │ │ │ │ └── NSValue+KiwiAdditions.h │ │ └── Public │ │ │ ├── AXMagicIdentifiers │ │ │ ├── AXMagicIdentifiers.h │ │ │ ├── UIButton+MagicId.h │ │ │ ├── UICollectionView+MagicId.h │ │ │ ├── UIPageControl+MagicId.h │ │ │ ├── UIPickerView+MagicId.h │ │ │ ├── UISwitch+MagicId.h │ │ │ ├── UITableView+MagicId.h │ │ │ ├── UITextField+MagicId.h │ │ │ ├── UITextView+MagicId.h │ │ │ ├── UIView+MagicId.h │ │ │ └── UIViewController+MagicId.h │ │ │ ├── FBSnapshotTestCase │ │ │ ├── FBSnapshotTestCase.h │ │ │ ├── FBSnapshotTestCasePlatform.h │ │ │ ├── FBSnapshotTestController.h │ │ │ ├── UIImage+Compare.h │ │ │ └── UIImage+Diff.h │ │ │ ├── JRSwizzle │ │ │ └── JRSwizzle.h │ │ │ └── Kiwi │ │ │ ├── KWAfterAllNode.h │ │ │ ├── KWAfterEachNode.h │ │ │ ├── KWAny.h │ │ │ ├── KWAsyncVerifier.h │ │ │ ├── KWBeBetweenMatcher.h │ │ │ ├── KWBeEmptyMatcher.h │ │ │ ├── KWBeIdenticalToMatcher.h │ │ │ ├── KWBeKindOfClassMatcher.h │ │ │ ├── KWBeMemberOfClassMatcher.h │ │ │ ├── KWBeSubclassOfClassMatcher.h │ │ │ ├── KWBeTrueMatcher.h │ │ │ ├── KWBeWithinMatcher.h │ │ │ ├── KWBeZeroMatcher.h │ │ │ ├── KWBeforeAllNode.h │ │ │ ├── KWBeforeEachNode.h │ │ │ ├── KWBlock.h │ │ │ ├── KWBlockNode.h │ │ │ ├── KWBlockRaiseMatcher.h │ │ │ ├── KWCallSite.h │ │ │ ├── KWCaptureSpy.h │ │ │ ├── KWChangeMatcher.h │ │ │ ├── KWConformToProtocolMatcher.h │ │ │ ├── KWContainMatcher.h │ │ │ ├── KWContainStringMatcher.h │ │ │ ├── KWContextNode.h │ │ │ ├── KWCountType.h │ │ │ ├── KWDeviceInfo.h │ │ │ ├── KWEqualMatcher.h │ │ │ ├── KWExample.h │ │ │ ├── KWExampleDelegate.h │ │ │ ├── KWExampleNode.h │ │ │ ├── KWExampleNodeVisitor.h │ │ │ ├── KWExampleSuite.h │ │ │ ├── KWExampleSuiteBuilder.h │ │ │ ├── KWExistVerifier.h │ │ │ ├── KWExpectationType.h │ │ │ ├── KWFailure.h │ │ │ ├── KWFormatter.h │ │ │ ├── KWFutureObject.h │ │ │ ├── KWGenericMatchEvaluator.h │ │ │ ├── KWGenericMatcher.h │ │ │ ├── KWGenericMatchingAdditions.h │ │ │ ├── KWHaveMatcher.h │ │ │ ├── KWHaveValueMatcher.h │ │ │ ├── KWInequalityMatcher.h │ │ │ ├── KWIntercept.h │ │ │ ├── KWInvocationCapturer.h │ │ │ ├── KWItNode.h │ │ │ ├── KWLet.h │ │ │ ├── KWLetNode.h │ │ │ ├── KWMatchVerifier.h │ │ │ ├── KWMatcher.h │ │ │ ├── KWMatcherFactory.h │ │ │ ├── KWMatchers.h │ │ │ ├── KWMatching.h │ │ │ ├── KWMessagePattern.h │ │ │ ├── KWMessageSpying.h │ │ │ ├── KWMessageTracker.h │ │ │ ├── KWMock.h │ │ │ ├── KWNilMatcher.h │ │ │ ├── KWNotificationMatcher.h │ │ │ ├── KWNull.h │ │ │ ├── KWObjCUtilities.h │ │ │ ├── KWPendingNode.h │ │ │ ├── KWProbe.h │ │ │ ├── KWProbePoller.h │ │ │ ├── KWReceiveMatcher.h │ │ │ ├── KWRegisterMatchersNode.h │ │ │ ├── KWRegularExpressionPatternMatcher.h │ │ │ ├── KWReporting.h │ │ │ ├── KWRespondToSelectorMatcher.h │ │ │ ├── KWSpec.h │ │ │ ├── KWStringContainsMatcher.h │ │ │ ├── KWStringPrefixMatcher.h │ │ │ ├── KWStringUtilities.h │ │ │ ├── KWStub.h │ │ │ ├── KWSuiteConfigurationBase.h │ │ │ ├── KWSymbolicator.h │ │ │ ├── KWUserDefinedMatcher.h │ │ │ ├── KWValue.h │ │ │ ├── KWVerifying.h │ │ │ ├── KWWorkarounds.h │ │ │ ├── Kiwi.h │ │ │ ├── KiwiBlockMacros.h │ │ │ ├── KiwiConfiguration.h │ │ │ ├── KiwiMacros.h │ │ │ ├── NSInvocation+KiwiAdditions.h │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ ├── NSMethodSignature+KiwiAdditions.h │ │ │ ├── NSNumber+KiwiAdditions.h │ │ │ ├── NSObject+KiwiMockAdditions.h │ │ │ ├── NSObject+KiwiSpyAdditions.h │ │ │ ├── NSObject+KiwiStubAdditions.h │ │ │ ├── NSObject+KiwiVerifierAdditions.h │ │ │ ├── NSProxy+KiwiVerifierAdditions.h │ │ │ └── NSValue+KiwiAdditions.h │ ├── JRSwizzle │ │ ├── JRSwizzle.h │ │ ├── JRSwizzle.m │ │ └── README.markdown │ ├── Kiwi │ │ ├── Classes │ │ │ ├── Config │ │ │ │ ├── KWAllTestsSuite.m │ │ │ │ ├── KWSuiteConfigurationBase.h │ │ │ │ └── KWSuiteConfigurationBase.m │ │ │ ├── Core │ │ │ │ ├── KWAny.h │ │ │ │ ├── KWAny.m │ │ │ │ ├── KWBlock.h │ │ │ │ ├── KWBlock.m │ │ │ │ ├── KWCallSite.h │ │ │ │ ├── KWCallSite.m │ │ │ │ ├── KWCaptureSpy.h │ │ │ │ ├── KWCaptureSpy.m │ │ │ │ ├── KWCountType.h │ │ │ │ ├── KWDeviceInfo.h │ │ │ │ ├── KWDeviceInfo.m │ │ │ │ ├── KWExample.h │ │ │ │ ├── KWExample.m │ │ │ │ ├── KWExampleDelegate.h │ │ │ │ ├── KWExampleNodeVisitor.h │ │ │ │ ├── KWExampleSuite.h │ │ │ │ ├── KWExampleSuite.m │ │ │ │ ├── KWExampleSuiteBuilder.h │ │ │ │ ├── KWExampleSuiteBuilder.m │ │ │ │ ├── KWExpectationType.h │ │ │ │ ├── KWFailure.h │ │ │ │ ├── KWFailure.m │ │ │ │ ├── KWFormatter.h │ │ │ │ ├── KWFormatter.m │ │ │ │ ├── KWFutureObject.h │ │ │ │ ├── KWFutureObject.m │ │ │ │ ├── KWInvocationCapturer.h │ │ │ │ ├── KWInvocationCapturer.m │ │ │ │ ├── KWLet.h │ │ │ │ ├── KWMatcher.h │ │ │ │ ├── KWMatcher.m │ │ │ │ ├── KWMatcherFactory.h │ │ │ │ ├── KWMatcherFactory.m │ │ │ │ ├── KWMatchers.h │ │ │ │ ├── KWMatchers.m │ │ │ │ ├── KWMatching.h │ │ │ │ ├── KWMessagePattern.h │ │ │ │ ├── KWMessagePattern.m │ │ │ │ ├── KWMessageSpying.h │ │ │ │ ├── KWMessageTracker.h │ │ │ │ ├── KWMessageTracker.m │ │ │ │ ├── KWNull.h │ │ │ │ ├── KWNull.m │ │ │ │ ├── KWObjCUtilities.h │ │ │ │ ├── KWObjCUtilities.m │ │ │ │ ├── KWProbe.h │ │ │ │ ├── KWProbePoller.h │ │ │ │ ├── KWProbePoller.m │ │ │ │ ├── KWReporting.h │ │ │ │ ├── KWSpec.h │ │ │ │ ├── KWSpec.m │ │ │ │ ├── KWStringUtilities.h │ │ │ │ ├── KWStringUtilities.m │ │ │ │ ├── KWSymbolicator.h │ │ │ │ ├── KWSymbolicator.m │ │ │ │ ├── KWValue.h │ │ │ │ ├── KWValue.m │ │ │ │ ├── KWWorkarounds.h │ │ │ │ ├── KWWorkarounds.m │ │ │ │ ├── Kiwi.h │ │ │ │ ├── KiwiBlockMacros.h │ │ │ │ ├── KiwiConfiguration.h │ │ │ │ ├── KiwiMacros.h │ │ │ │ ├── NSInvocation+KiwiAdditions.h │ │ │ │ ├── NSInvocation+KiwiAdditions.m │ │ │ │ ├── NSInvocation+OCMAdditions.h │ │ │ │ ├── NSInvocation+OCMAdditions.m │ │ │ │ ├── NSMethodSignature+KiwiAdditions.h │ │ │ │ ├── NSMethodSignature+KiwiAdditions.m │ │ │ │ ├── NSNumber+KiwiAdditions.h │ │ │ │ ├── NSNumber+KiwiAdditions.m │ │ │ │ ├── NSObject+KiwiSpyAdditions.h │ │ │ │ ├── NSObject+KiwiSpyAdditions.m │ │ │ │ ├── NSObject+KiwiVerifierAdditions.h │ │ │ │ ├── NSObject+KiwiVerifierAdditions.m │ │ │ │ ├── NSProxy+KiwiVerifierAdditions.h │ │ │ │ ├── NSProxy+KiwiVerifierAdditions.m │ │ │ │ ├── NSValue+KiwiAdditions.h │ │ │ │ └── NSValue+KiwiAdditions.m │ │ │ ├── Matchers │ │ │ │ ├── KWBeBetweenMatcher.h │ │ │ │ ├── KWBeBetweenMatcher.m │ │ │ │ ├── KWBeEmptyMatcher.h │ │ │ │ ├── KWBeEmptyMatcher.m │ │ │ │ ├── KWBeIdenticalToMatcher.h │ │ │ │ ├── KWBeIdenticalToMatcher.m │ │ │ │ ├── KWBeKindOfClassMatcher.h │ │ │ │ ├── KWBeKindOfClassMatcher.m │ │ │ │ ├── KWBeMemberOfClassMatcher.h │ │ │ │ ├── KWBeMemberOfClassMatcher.m │ │ │ │ ├── KWBeSubclassOfClassMatcher.h │ │ │ │ ├── KWBeSubclassOfClassMatcher.m │ │ │ │ ├── KWBeTrueMatcher.h │ │ │ │ ├── KWBeTrueMatcher.m │ │ │ │ ├── KWBeWithinMatcher.h │ │ │ │ ├── KWBeWithinMatcher.m │ │ │ │ ├── KWBeZeroMatcher.h │ │ │ │ ├── KWBeZeroMatcher.m │ │ │ │ ├── KWBlockRaiseMatcher.h │ │ │ │ ├── KWBlockRaiseMatcher.m │ │ │ │ ├── KWChangeMatcher.h │ │ │ │ ├── KWChangeMatcher.m │ │ │ │ ├── KWConformToProtocolMatcher.h │ │ │ │ ├── KWConformToProtocolMatcher.m │ │ │ │ ├── KWContainMatcher.h │ │ │ │ ├── KWContainMatcher.m │ │ │ │ ├── KWContainStringMatcher.h │ │ │ │ ├── KWContainStringMatcher.m │ │ │ │ ├── KWEqualMatcher.h │ │ │ │ ├── KWEqualMatcher.m │ │ │ │ ├── KWGenericMatchEvaluator.h │ │ │ │ ├── KWGenericMatchEvaluator.m │ │ │ │ ├── KWGenericMatcher.h │ │ │ │ ├── KWGenericMatcher.m │ │ │ │ ├── KWGenericMatchingAdditions.h │ │ │ │ ├── KWGenericMatchingAdditions.m │ │ │ │ ├── KWHaveMatcher.h │ │ │ │ ├── KWHaveMatcher.m │ │ │ │ ├── KWHaveValueMatcher.h │ │ │ │ ├── KWHaveValueMatcher.m │ │ │ │ ├── KWInequalityMatcher.h │ │ │ │ ├── KWInequalityMatcher.m │ │ │ │ ├── KWNilMatcher.h │ │ │ │ ├── KWNilMatcher.m │ │ │ │ ├── KWNotificationMatcher.h │ │ │ │ ├── KWNotificationMatcher.m │ │ │ │ ├── KWReceiveMatcher.h │ │ │ │ ├── KWReceiveMatcher.m │ │ │ │ ├── KWRegularExpressionPatternMatcher.h │ │ │ │ ├── KWRegularExpressionPatternMatcher.m │ │ │ │ ├── KWRespondToSelectorMatcher.h │ │ │ │ ├── KWRespondToSelectorMatcher.m │ │ │ │ ├── KWStringContainsMatcher.h │ │ │ │ ├── KWStringContainsMatcher.m │ │ │ │ ├── KWStringPrefixMatcher.h │ │ │ │ ├── KWStringPrefixMatcher.m │ │ │ │ ├── KWUserDefinedMatcher.h │ │ │ │ └── KWUserDefinedMatcher.m │ │ │ ├── Mocking │ │ │ │ ├── KWMock.h │ │ │ │ ├── KWMock.m │ │ │ │ ├── NSObject+KiwiMockAdditions.h │ │ │ │ └── NSObject+KiwiMockAdditions.m │ │ │ ├── Nodes │ │ │ │ ├── KWAfterAllNode.h │ │ │ │ ├── KWAfterAllNode.m │ │ │ │ ├── KWAfterEachNode.h │ │ │ │ ├── KWAfterEachNode.m │ │ │ │ ├── KWBeforeAllNode.h │ │ │ │ ├── KWBeforeAllNode.m │ │ │ │ ├── KWBeforeEachNode.h │ │ │ │ ├── KWBeforeEachNode.m │ │ │ │ ├── KWBlockNode.h │ │ │ │ ├── KWBlockNode.m │ │ │ │ ├── KWContextNode.h │ │ │ │ ├── KWContextNode.m │ │ │ │ ├── KWExampleNode.h │ │ │ │ ├── KWItNode.h │ │ │ │ ├── KWItNode.m │ │ │ │ ├── KWLetNode.h │ │ │ │ ├── KWLetNode.m │ │ │ │ ├── KWPendingNode.h │ │ │ │ ├── KWPendingNode.m │ │ │ │ ├── KWRegisterMatchersNode.h │ │ │ │ └── KWRegisterMatchersNode.m │ │ │ ├── Stubbing │ │ │ │ ├── KWIntercept.h │ │ │ │ ├── KWIntercept.m │ │ │ │ ├── KWStub.h │ │ │ │ ├── KWStub.m │ │ │ │ ├── NSObject+KiwiStubAdditions.h │ │ │ │ └── NSObject+KiwiStubAdditions.m │ │ │ └── Verifiers │ │ │ │ ├── KWAsyncVerifier.h │ │ │ │ ├── KWAsyncVerifier.m │ │ │ │ ├── KWExistVerifier.h │ │ │ │ ├── KWExistVerifier.m │ │ │ │ ├── KWMatchVerifier.h │ │ │ │ ├── KWMatchVerifier.m │ │ │ │ └── KWVerifying.h │ │ ├── License.txt │ │ └── Readme.md │ ├── Local Podspecs │ │ └── AXMagicIdentifiers.podspec.json │ ├── Manifest.lock │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── Pods-AXMagicIdentifiers-AXMagicIdentifiers-AXMagicIdentifiers.xcscheme │ │ │ ├── Pods-AXMagicIdentifiers-AXMagicIdentifiers.xcscheme │ │ │ ├── Pods-Tests-AXMagicIdentifiers-AXMagicIdentifiers.xcscheme │ │ │ └── Pods-Tests-AXMagicIdentifiers.xcscheme │ └── Target Support Files │ │ ├── Pods-AXMagicIdentifiers-AXMagicIdentifiers │ │ ├── Pods-AXMagicIdentifiers-AXMagicIdentifiers-Private.xcconfig │ │ ├── Pods-AXMagicIdentifiers-AXMagicIdentifiers-dummy.m │ │ ├── Pods-AXMagicIdentifiers-AXMagicIdentifiers-prefix.pch │ │ └── Pods-AXMagicIdentifiers-AXMagicIdentifiers.xcconfig │ │ ├── Pods-AXMagicIdentifiers-JRSwizzle │ │ ├── Pods-AXMagicIdentifiers-JRSwizzle-Private.xcconfig │ │ ├── Pods-AXMagicIdentifiers-JRSwizzle-dummy.m │ │ ├── Pods-AXMagicIdentifiers-JRSwizzle-prefix.pch │ │ └── Pods-AXMagicIdentifiers-JRSwizzle.xcconfig │ │ ├── Pods-AXMagicIdentifiers │ │ ├── Pods-AXMagicIdentifiers-acknowledgements.markdown │ │ ├── Pods-AXMagicIdentifiers-acknowledgements.plist │ │ ├── Pods-AXMagicIdentifiers-dummy.m │ │ ├── Pods-AXMagicIdentifiers-environment.h │ │ ├── Pods-AXMagicIdentifiers-resources.sh │ │ ├── Pods-AXMagicIdentifiers.debug.xcconfig │ │ └── Pods-AXMagicIdentifiers.release.xcconfig │ │ ├── Pods-Tests-AXMagicIdentifiers │ │ ├── Pods-Tests-AXMagicIdentifiers-Private.xcconfig │ │ ├── Pods-Tests-AXMagicIdentifiers-dummy.m │ │ ├── Pods-Tests-AXMagicIdentifiers-prefix.pch │ │ └── Pods-Tests-AXMagicIdentifiers.xcconfig │ │ ├── Pods-Tests-FBSnapshotTestCase │ │ ├── Pods-Tests-FBSnapshotTestCase-Private.xcconfig │ │ ├── Pods-Tests-FBSnapshotTestCase-dummy.m │ │ ├── Pods-Tests-FBSnapshotTestCase-prefix.pch │ │ └── Pods-Tests-FBSnapshotTestCase.xcconfig │ │ ├── Pods-Tests-JRSwizzle │ │ ├── Pods-Tests-JRSwizzle-Private.xcconfig │ │ ├── Pods-Tests-JRSwizzle-dummy.m │ │ ├── Pods-Tests-JRSwizzle-prefix.pch │ │ └── Pods-Tests-JRSwizzle.xcconfig │ │ ├── Pods-Tests-Kiwi │ │ ├── Pods-Tests-Kiwi-Private.xcconfig │ │ ├── Pods-Tests-Kiwi-dummy.m │ │ ├── Pods-Tests-Kiwi-prefix.pch │ │ └── Pods-Tests-Kiwi.xcconfig │ │ └── Pods-Tests │ │ ├── Pods-Tests-acknowledgements.markdown │ │ ├── Pods-Tests-acknowledgements.plist │ │ ├── Pods-Tests-dummy.m │ │ ├── Pods-Tests-environment.h │ │ ├── Pods-Tests-resources.sh │ │ ├── Pods-Tests.debug.xcconfig │ │ └── Pods-Tests.release.xcconfig └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── UIButtonSpec.m │ ├── UIPageControlSpec.m │ ├── UIPickerViewSpec.m │ ├── UISwitchSpec.m │ ├── UITextFieldSpec.m │ ├── UITextViewSpec.m │ ├── UIViewControllerSpec.m │ └── en.lproj │ └── InfoPlist.strings ├── LICENSE ├── Pod ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── AXMagicIdentifiers.h │ ├── UIButton+MagicId.h │ ├── UIButton+MagicId.m │ ├── UICollectionView+MagicId.h │ ├── UICollectionView+MagicId.m │ ├── UIPageControl+MagicId.h │ ├── UIPageControl+MagicId.m │ ├── UIPickerView+MagicId.h │ ├── UIPickerView+MagicId.m │ ├── UISwitch+MagicId.h │ ├── UISwitch+MagicId.m │ ├── UITableView+MagicId.h │ ├── UITableView+MagicId.m │ ├── UITextField+MagicId.h │ ├── UITextField+MagicId.m │ ├── UITextView+MagicId.h │ ├── UITextView+MagicId.m │ ├── UIView+MagicId.h │ ├── UIView+MagicId.m │ ├── UIViewController+MagicId.h │ └── UIViewController+MagicId.m ├── README.md └── steipete.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers.xcodeproj/xcshareddata/xcschemes/AXMagicIdentifiers-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers.xcodeproj/xcshareddata/xcschemes/AXMagicIdentifiers-Example.xcscheme -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXAppDelegate.h -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXAppDelegate.m -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXBtnsViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXBtnsViewController.h -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXBtnsViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXBtnsViewController.m -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXMagicIdentifiers-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXMagicIdentifiers-Info.plist -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXMagicIdentifiers-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXMagicIdentifiers-Prefix.pch -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXOtherViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXOtherViewController.h -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXOtherViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXOtherViewController.m -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXTableViewCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXTableViewCell.h -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXTableViewCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXTableViewCell.m -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXTableViewController.h -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXTableViewController.m -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXViewControllerWithTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXViewControllerWithTable.h -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/AXViewControllerWithTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/AXViewControllerWithTable.m -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/Main.Storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/Main.Storyboard -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/AXMagicIdentifiers/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/AXMagicIdentifiers/main.m -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.m -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/FBSnapshotTestCase/LICENSE -------------------------------------------------------------------------------- /Example/Pods/FBSnapshotTestCase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/FBSnapshotTestCase/README.md -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/AXMagicIdentifiers/AXMagicIdentifiers.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/AXMagicIdentifiers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/AXMagicIdentifiers/UIButton+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIButton+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/AXMagicIdentifiers/UICollectionView+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UICollectionView+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/AXMagicIdentifiers/UIPageControl+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIPageControl+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/AXMagicIdentifiers/UIPickerView+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIPickerView+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/AXMagicIdentifiers/UISwitch+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UISwitch+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/AXMagicIdentifiers/UITableView+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UITableView+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/AXMagicIdentifiers/UITextField+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UITextField+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/AXMagicIdentifiers/UITextView+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UITextView+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/AXMagicIdentifiers/UIView+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIView+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/AXMagicIdentifiers/UIViewController+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIViewController+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/JRSwizzle/JRSwizzle.h: -------------------------------------------------------------------------------- 1 | ../../../JRSwizzle/JRSwizzle.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWAfterAllNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWAfterEachNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWAny.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWAsyncVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBeforeAllNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBeforeEachNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBlock.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBlockNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWCaptureSpy.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWChangeMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWContainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWContainStringMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWContextNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWCountType.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWEqualMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWExample.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWExampleDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWExampleNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWExampleSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWExistVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWExpectationType.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWFailure.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWFutureObject.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWGenericMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWHaveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWInequalityMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWIntercept.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/KWIntercept.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWInvocationCapturer.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWItNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWLet.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWLet.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWLetNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWLetNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWMatchVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWMatcherFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWMatching.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWMessagePattern.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessagePattern.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWMessageSpying.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWMessageTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWMock.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWNilMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWNotificationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWNotificationMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWNull.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWObjCUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWPendingNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWProbe.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWProbePoller.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWReceiveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWReporting.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWStringUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWStub.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/KWStub.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWSuiteConfigurationBase.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Config/KWSuiteConfigurationBase.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWSymbolicator.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWSymbolicator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWValue.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWVerifying.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KWWorkarounds.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/Kiwi.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KiwiBlockMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KiwiConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/KiwiMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Private/Kiwi/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AXMagicIdentifiers/AXMagicIdentifiers.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/AXMagicIdentifiers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AXMagicIdentifiers/UIButton+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIButton+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AXMagicIdentifiers/UICollectionView+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UICollectionView+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AXMagicIdentifiers/UIPageControl+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIPageControl+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AXMagicIdentifiers/UIPickerView+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIPickerView+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AXMagicIdentifiers/UISwitch+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UISwitch+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AXMagicIdentifiers/UITableView+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UITableView+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AXMagicIdentifiers/UITextField+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UITextField+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AXMagicIdentifiers/UITextView+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UITextView+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AXMagicIdentifiers/UIView+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIView+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/AXMagicIdentifiers/UIViewController+MagicId.h: -------------------------------------------------------------------------------- 1 | ../../../../../Pod/Classes/UIViewController+MagicId.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/FBSnapshotTestCase/FBSnapshotTestCase.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCase.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestCasePlatform.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/FBSnapshotTestCase/FBSnapshotTestController.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/FBSnapshotTestController.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/FBSnapshotTestCase/UIImage+Compare.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Compare.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/FBSnapshotTestCase/UIImage+Diff.h: -------------------------------------------------------------------------------- 1 | ../../../FBSnapshotTestCase/FBSnapshotTestCase/UIImage+Diff.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/JRSwizzle/JRSwizzle.h: -------------------------------------------------------------------------------- 1 | ../../../JRSwizzle/JRSwizzle.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWAfterAllNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWAfterEachNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWAny.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWAsyncVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBeforeAllNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBeforeEachNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBlock.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBlockNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWCallSite.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWCaptureSpy.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWChangeMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWContainMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWContainStringMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWContextNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWCountType.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWDeviceInfo.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWEqualMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWExample.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWExampleDelegate.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWExampleNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWExampleSuite.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWExistVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWExpectationType.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWFailure.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWFormatter.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWFutureObject.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWGenericMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWHaveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWInequalityMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWIntercept.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/KWIntercept.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWInvocationCapturer.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWItNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWLet.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWLet.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWLetNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWLetNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWMatchVerifier.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWMatcherFactory.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWMatchers.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWMatching.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWMessagePattern.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessagePattern.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWMessageSpying.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWMessageTracker.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWMock.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWNilMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWNotificationMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWNotificationMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWNull.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWObjCUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWPendingNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWProbe.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWProbePoller.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWReceiveMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWReporting.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWSpec.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWStringUtilities.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWStub.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/KWStub.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWSuiteConfigurationBase.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Config/KWSuiteConfigurationBase.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWSymbolicator.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWSymbolicator.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWValue.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWVerifying.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KWWorkarounds.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/Kiwi.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KiwiBlockMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KiwiConfiguration.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/KiwiMacros.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Headers/Public/Kiwi/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- 1 | ../../../Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/JRSwizzle/JRSwizzle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/JRSwizzle/JRSwizzle.h -------------------------------------------------------------------------------- /Example/Pods/JRSwizzle/JRSwizzle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/JRSwizzle/JRSwizzle.m -------------------------------------------------------------------------------- /Example/Pods/JRSwizzle/README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/JRSwizzle/README.markdown -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Config/KWAllTestsSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Config/KWAllTestsSuite.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Config/KWSuiteConfigurationBase.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWAny.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWAny.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWAny.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWAny.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWBlock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWBlock.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWBlock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWBlock.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCallSite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWCallSite.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCallSite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWCallSite.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCaptureSpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWCaptureSpy.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCaptureSpy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWCaptureSpy.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWCountType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWCountType.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWDeviceInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWDeviceInfo.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWDeviceInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWDeviceInfo.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExample.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWExample.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExample.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWExample.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleDelegate.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleNodeVisitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleNodeVisitor.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleSuite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleSuite.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleSuite.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleSuite.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWExampleSuiteBuilder.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWExpectationType.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWExpectationType.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFailure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWFailure.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFailure.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWFailure.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFormatter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWFormatter.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFormatter.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWFormatter.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFutureObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWFutureObject.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWFutureObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWFutureObject.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWInvocationCapturer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWInvocationCapturer.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWInvocationCapturer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWInvocationCapturer.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWLet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWLet.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatcherFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatcherFactory.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatcherFactory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatcherFactory.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatchers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatchers.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatchers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatchers.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWMatching.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessagePattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessagePattern.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessagePattern.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessagePattern.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessageSpying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessageSpying.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessageTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessageTracker.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWMessageTracker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWMessageTracker.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWNull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWNull.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWNull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWNull.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWObjCUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWObjCUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWObjCUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWObjCUtilities.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWProbe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWProbe.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWProbePoller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWProbePoller.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWProbePoller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWProbePoller.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWReporting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWReporting.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWSpec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWSpec.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWSpec.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWStringUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWStringUtilities.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWStringUtilities.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWStringUtilities.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWSymbolicator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWSymbolicator.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWSymbolicator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWSymbolicator.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWValue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWValue.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWValue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWValue.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWWorkarounds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWWorkarounds.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KWWorkarounds.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KWWorkarounds.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/Kiwi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/Kiwi.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KiwiBlockMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KiwiBlockMacros.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KiwiConfiguration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KiwiConfiguration.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/KiwiMacros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/KiwiMacros.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSInvocation+KiwiAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSInvocation+OCMAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSMethodSignature+KiwiAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSNumber+KiwiAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSObject+KiwiSpyAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSObject+KiwiVerifierAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSProxy+KiwiVerifierAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Core/NSValue+KiwiAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeBetweenMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeEmptyMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeIdenticalToMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeKindOfClassMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeMemberOfClassMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeSubclassOfClassMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeTrueMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeWithinMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBeZeroMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWBlockRaiseMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWChangeMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWConformToProtocolMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWContainMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWContainMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWContainMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWContainMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWContainStringMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWEqualMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchEvaluator.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWGenericMatchingAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWHaveMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWHaveValueMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWInequalityMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWNilMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWNilMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWNilMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWNilMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWNotificationMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWReceiveMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWRegularExpressionPatternMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWRespondToSelectorMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWStringContainsMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWStringPrefixMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Matchers/KWUserDefinedMatcher.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Mocking/KWMock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Mocking/KWMock.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Mocking/KWMock.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Mocking/KWMock.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Mocking/NSObject+KiwiMockAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWAfterAllNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWAfterEachNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBeforeAllNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBeforeEachNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBlockNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBlockNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWBlockNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWBlockNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWContextNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWContextNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWContextNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWContextNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWExampleNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWExampleNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWItNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWItNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWItNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWItNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWLetNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWLetNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWLetNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWLetNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWPendingNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWPendingNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWPendingNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWPendingNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Nodes/KWRegisterMatchersNode.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/KWIntercept.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Stubbing/KWIntercept.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/KWIntercept.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Stubbing/KWIntercept.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/KWStub.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Stubbing/KWStub.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/KWStub.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Stubbing/KWStub.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Stubbing/NSObject+KiwiStubAdditions.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWAsyncVerifier.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWExistVerifier.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWMatchVerifier.m -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Classes/Verifiers/KWVerifying.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Classes/Verifiers/KWVerifying.h -------------------------------------------------------------------------------- /Example/Pods/Kiwi/License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/License.txt -------------------------------------------------------------------------------- /Example/Pods/Kiwi/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Kiwi/Readme.md -------------------------------------------------------------------------------- /Example/Pods/Local Podspecs/AXMagicIdentifiers.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Local Podspecs/AXMagicIdentifiers.podspec.json -------------------------------------------------------------------------------- /Example/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Manifest.lock -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-AXMagicIdentifiers-AXMagicIdentifiers-AXMagicIdentifiers.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-AXMagicIdentifiers-AXMagicIdentifiers-AXMagicIdentifiers.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-AXMagicIdentifiers-AXMagicIdentifiers.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-AXMagicIdentifiers-AXMagicIdentifiers.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Tests-AXMagicIdentifiers-AXMagicIdentifiers.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Tests-AXMagicIdentifiers-AXMagicIdentifiers.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Tests-AXMagicIdentifiers.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Pods.xcodeproj/xcshareddata/xcschemes/Pods-Tests-AXMagicIdentifiers.xcscheme -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-AXMagicIdentifiers/Pods-AXMagicIdentifiers-AXMagicIdentifiers-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-AXMagicIdentifiers/Pods-AXMagicIdentifiers-AXMagicIdentifiers-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-AXMagicIdentifiers/Pods-AXMagicIdentifiers-AXMagicIdentifiers-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-AXMagicIdentifiers/Pods-AXMagicIdentifiers-AXMagicIdentifiers-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-AXMagicIdentifiers/Pods-AXMagicIdentifiers-AXMagicIdentifiers-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-AXMagicIdentifiers/Pods-AXMagicIdentifiers-AXMagicIdentifiers-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-AXMagicIdentifiers/Pods-AXMagicIdentifiers-AXMagicIdentifiers.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-AXMagicIdentifiers/Pods-AXMagicIdentifiers-AXMagicIdentifiers.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-JRSwizzle/Pods-AXMagicIdentifiers-JRSwizzle-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-JRSwizzle/Pods-AXMagicIdentifiers-JRSwizzle-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-JRSwizzle/Pods-AXMagicIdentifiers-JRSwizzle-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-JRSwizzle/Pods-AXMagicIdentifiers-JRSwizzle-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-JRSwizzle/Pods-AXMagicIdentifiers-JRSwizzle-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-JRSwizzle/Pods-AXMagicIdentifiers-JRSwizzle-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers-JRSwizzle/Pods-AXMagicIdentifiers-JRSwizzle.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_AXMAGICIDENTIFIERS_JRSWIZZLE_OTHER_LDFLAGS = -framework "Foundation" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-AXMagicIdentifiers/Pods-AXMagicIdentifiers.release.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-AXMagicIdentifiers/Pods-Tests-AXMagicIdentifiers-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-AXMagicIdentifiers/Pods-Tests-AXMagicIdentifiers-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-AXMagicIdentifiers/Pods-Tests-AXMagicIdentifiers-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-AXMagicIdentifiers/Pods-Tests-AXMagicIdentifiers-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-AXMagicIdentifiers/Pods-Tests-AXMagicIdentifiers-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-AXMagicIdentifiers/Pods-Tests-AXMagicIdentifiers-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-AXMagicIdentifiers/Pods-Tests-AXMagicIdentifiers.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_TESTS_AXMAGICIDENTIFIERS_OTHER_LDFLAGS = -framework "UIKit" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-FBSnapshotTestCase/Pods-Tests-FBSnapshotTestCase.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-JRSwizzle/Pods-Tests-JRSwizzle-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-JRSwizzle/Pods-Tests-JRSwizzle-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-JRSwizzle/Pods-Tests-JRSwizzle-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-JRSwizzle/Pods-Tests-JRSwizzle-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-JRSwizzle/Pods-Tests-JRSwizzle-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-JRSwizzle/Pods-Tests-JRSwizzle-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-JRSwizzle/Pods-Tests-JRSwizzle.xcconfig: -------------------------------------------------------------------------------- 1 | PODS_TESTS_JRSWIZZLE_OTHER_LDFLAGS = -framework "Foundation" -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-Kiwi/Pods-Tests-Kiwi-Private.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-Kiwi/Pods-Tests-Kiwi-Private.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-Kiwi/Pods-Tests-Kiwi-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-Kiwi/Pods-Tests-Kiwi-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-Kiwi/Pods-Tests-Kiwi-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-Kiwi/Pods-Tests-Kiwi-prefix.pch -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests-Kiwi/Pods-Tests-Kiwi.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests-Kiwi/Pods-Tests-Kiwi.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.markdown -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-acknowledgements.plist -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-dummy.m -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-environment.h -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests-resources.sh -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.debug.xcconfig -------------------------------------------------------------------------------- /Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Pods/Target Support Files/Pods-Tests/Pods-Tests.release.xcconfig -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/UIButtonSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Tests/UIButtonSpec.m -------------------------------------------------------------------------------- /Example/Tests/UIPageControlSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Tests/UIPageControlSpec.m -------------------------------------------------------------------------------- /Example/Tests/UIPickerViewSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Tests/UIPickerViewSpec.m -------------------------------------------------------------------------------- /Example/Tests/UISwitchSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Tests/UISwitchSpec.m -------------------------------------------------------------------------------- /Example/Tests/UITextFieldSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Tests/UITextFieldSpec.m -------------------------------------------------------------------------------- /Example/Tests/UITextViewSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Tests/UITextViewSpec.m -------------------------------------------------------------------------------- /Example/Tests/UIViewControllerSpec.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Example/Tests/UIViewControllerSpec.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/LICENSE -------------------------------------------------------------------------------- /Pod/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Pod/Classes/AXMagicIdentifiers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/AXMagicIdentifiers.h -------------------------------------------------------------------------------- /Pod/Classes/UIButton+MagicId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UIButton+MagicId.h -------------------------------------------------------------------------------- /Pod/Classes/UIButton+MagicId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UIButton+MagicId.m -------------------------------------------------------------------------------- /Pod/Classes/UICollectionView+MagicId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UICollectionView+MagicId.h -------------------------------------------------------------------------------- /Pod/Classes/UICollectionView+MagicId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UICollectionView+MagicId.m -------------------------------------------------------------------------------- /Pod/Classes/UIPageControl+MagicId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UIPageControl+MagicId.h -------------------------------------------------------------------------------- /Pod/Classes/UIPageControl+MagicId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UIPageControl+MagicId.m -------------------------------------------------------------------------------- /Pod/Classes/UIPickerView+MagicId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UIPickerView+MagicId.h -------------------------------------------------------------------------------- /Pod/Classes/UIPickerView+MagicId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UIPickerView+MagicId.m -------------------------------------------------------------------------------- /Pod/Classes/UISwitch+MagicId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UISwitch+MagicId.h -------------------------------------------------------------------------------- /Pod/Classes/UISwitch+MagicId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UISwitch+MagicId.m -------------------------------------------------------------------------------- /Pod/Classes/UITableView+MagicId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UITableView+MagicId.h -------------------------------------------------------------------------------- /Pod/Classes/UITableView+MagicId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UITableView+MagicId.m -------------------------------------------------------------------------------- /Pod/Classes/UITextField+MagicId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UITextField+MagicId.h -------------------------------------------------------------------------------- /Pod/Classes/UITextField+MagicId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UITextField+MagicId.m -------------------------------------------------------------------------------- /Pod/Classes/UITextView+MagicId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UITextView+MagicId.h -------------------------------------------------------------------------------- /Pod/Classes/UITextView+MagicId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UITextView+MagicId.m -------------------------------------------------------------------------------- /Pod/Classes/UIView+MagicId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UIView+MagicId.h -------------------------------------------------------------------------------- /Pod/Classes/UIView+MagicId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UIView+MagicId.m -------------------------------------------------------------------------------- /Pod/Classes/UIViewController+MagicId.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UIViewController+MagicId.h -------------------------------------------------------------------------------- /Pod/Classes/UIViewController+MagicId.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/Pod/Classes/UIViewController+MagicId.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/README.md -------------------------------------------------------------------------------- /steipete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/garrefa/AXMagicIdentifiers/HEAD/steipete.png --------------------------------------------------------------------------------