Skip to content

Commit 401afb4

Browse files
committed
Tidied up imports in tests.
1 parent b3d7f80 commit 401afb4

23 files changed

+35
-30
lines changed

Source/OCMockTests/NSInvocationOCMAdditionsTests.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
#import "NSInvocation+OCMAdditions.h"
1919
#import "OCMArg.h"
2020

21+
2122
@implementation NSValue(OCMTestAdditions)
2223

2324
- (id)initialValue

Source/OCMockTests/NSMethodSignatureOCMAdditionsTests.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#import <XCTest/XCTest.h>
1818
#import "NSMethodSignature+OCMAdditions.h"
1919

20+
2021
#if TARGET_OS_IPHONE
2122
#define NSPoint CGPoint
2223
#define NSSize CGSize

Source/OCMockTests/OCMBoxedReturnValueProviderTests.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
#import <XCTest/XCTest.h>
1818
#import "OCMBoxedReturnValueProvider.h"
1919

20+
2021
@interface OCMBoxedReturnValueProvider(Private)
2122
- (BOOL)isMethodReturnType:(const char *)returnType compatibleWithValueType:(const char *)valueType value:(const char*)value valueSize:(size_t)valueSize;
2223
@end

Source/OCMockTests/OCMCPlusPlus11Tests.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
#import <XCTest/XCTest.h>
18-
#import <OCMock/OCMock.h>
18+
#import "OCMock.h"
1919

2020
#if !defined(__cplusplus)
2121
#error This file must be compiled with C++

Source/OCMockTests/OCMCPlusPlus98Tests.mm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
#import <XCTest/XCTest.h>
18-
#import <OCMock/OCMock.h>
18+
#import "OCMock.h"
1919

2020
#if !defined(__cplusplus)
2121
#error This file must be compiled with C++

Source/OCMockTests/OCMConstraintTests.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616

1717
#import <XCTest/XCTest.h>
18-
#import <OCMock/OCMConstraint.h>
18+
#import "OCMConstraint.h"
1919

2020

2121
@interface OCMConstraintTests : XCTestCase

Source/OCMockTests/OCMInvocationMatcherTests.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@
1515
*/
1616

1717
#import <XCTest/XCTest.h>
18-
#import <OCMock/OCMArg.h>
18+
#import "OCMock.h"
1919
#import "OCMInvocationMatcher.h"
20-
#import "OCClassMockObject.h"
2120
#import "OCMFunctionsPrivate.h"
2221

2322

Source/OCMockTests/OCMNoEscapeBlockTests.m

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@
1515
*/
1616

1717
#import <XCTest/XCTest.h>
18-
#import <OCMock/OCMock.h>
18+
#import "OCMock.h"
1919
#import "OCMFunctionsPrivate.h"
2020

21+
2122
@interface NSString(NoEscapeBlock)
2223
@end
2324

Source/OCMockTests/OCMQuantifierTests.m

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@
1515
*/
1616

1717
#import <XCTest/XCTest.h>
18-
#import <OCMock/OCMock.h>
19-
#import "OCMQuantifier.h"
18+
#import "OCMock.h"
2019

2120

2221
@interface TestClassForQuantifiers : NSObject

Source/OCMockTests/OCMStubRecorderTests.m

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,12 @@
1515
*/
1616

1717
#import <XCTest/XCTest.h>
18-
#import "OCMStubRecorder.h"
19-
#import <OCMock/OCMockObject.h>
18+
#import "OCMock.h"
2019
#import "OCMObjectReturnValueProvider.h"
2120
#import "OCMExceptionReturnValueProvider.h"
22-
#import "OCMInvocationMatcher.h"
2321
#import "OCMInvocationStub.h"
2422

23+
2524
@interface OCMStubRecorderTests : XCTestCase
2625

2726
@end

0 commit comments

Comments
 (0)