Skip to content

Commit b51e003

Browse files
committed
updated the few test classes to XCTest.
1 parent 4f0a1ec commit b51e003

6 files changed

+10
-12
lines changed

SessionManagerTest.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
//Copyright (c) 2012 __MyCompanyName__. All rights reserved.
77
//
88

9-
#import <SenTestingKit/SenTestingKit.h>
9+
#import <XCTest/XCTest.h>
1010

11-
@interface SessionManagerTest : SenTestCase
11+
@interface SessionManagerTest : XCTestCase
1212

1313
@end

SessionManagerTest.m

-2
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,4 @@ - (void)tearDown {
2525
[super tearDown];
2626
}
2727

28-
29-
3028
@end

test/BookmarkManagerTest.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
// Copyright 2008 __MyCompanyName__. All rights reserved.
77
//
88

9-
#import <SenTestingKit/SenTestingKit.h>
9+
#import <XCTest/XCTest.h>
1010

11-
@interface BookmarkManagerTest : SenTestCase {
11+
@interface BookmarkManagerTest : XCTestCase {
1212
}
1313

1414
@end

test/BookmarkManagerTest.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@ @implementation BookmarkManagerTest
1414

1515
- (void)testLoadBookmarks {
1616
BookmarkManager *manager = [BookmarkManager defaultManager];
17-
STAssertNotNil(manager, @"manager is nil");
17+
XCTAssertNotNil(manager, @"manager is nil");
1818

1919
NSArray *bmarks = [manager bookmarks];
20-
STAssertNotNil(bmarks, @"boookmarks nil");
20+
XCTAssertNotNil(bmarks, @"boookmarks nil");
2121
}
2222

2323
@end

test/ObjectAssotiationsTest.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
// Copyright 2010 Software by MABE. All rights reserved.
77
//
88

9-
#import <SenTestingKit/SenTestingKit.h>
9+
#import <XCTest/XCTest.h>
1010
#import "ObjectAssociations.h"
1111

12-
@interface ObjectAssotiationsTest : SenTestCase {
12+
@interface ObjectAssotiationsTest : XCTestCase {
1313
ObjectAssociations *objAsso;
1414
NSObject *assoObject;
1515
NSObject *anObject;

test/ObjectAssotiationsTest.m

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ - (void)setUp {
2121
- (void)testAssotiation {
2222
[objAsso registerObject:anObject forAssotiatedObject:assoObject withKey:&anObjectKey];
2323
NSObject *obj = [objAsso objectForAssociatedObject:assoObject withKey:&anObjectKey];
24-
STAssertTrue((obj == anObject), @"");
25-
STAssertEqualObjects(obj, anObject, @"");
24+
XCTAssertTrue((obj == anObject), @"");
25+
XCTAssertEqualObjects(obj, anObject, @"");
2626
}
2727

2828
@end

0 commit comments

Comments
 (0)