Created
January 29, 2014 02:03
-
-
Save westonplatter/8680487 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #import <XCTest/XCTest.h> | |
| #import "CoreDataHelper.h" | |
| #import "Todo.h" | |
| #import "User.h" | |
| @interface TodoTests: XCTestCase | |
| @property (nonatomic,retain) NSManagedObjectContext *moc; | |
| @end | |
| @implementation TodoTests | |
| - (void)setUp | |
| { | |
| [super setUp]; | |
| // get CoreData Managed Object Context from CoreData helper | |
| self.moc = [CoreDataHelper getManagedObjectContext]; | |
| } | |
| - (void)tearDown | |
| { | |
| [super tearDown]; | |
| } | |
| - (void)testTodo | |
| {} | |
| @end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment