Created
October 30, 2012 23:20
-
-
Save fgarcia/3983738 to your computer and use it in GitHub Desktop.
unit testing with coredata
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
| { | |
| Entity *_this; | |
| } | |
| - (void)setUp | |
| { | |
| [MagicalRecord setupCoreDataStackWithInMemoryStore]; | |
| _this = [Entity MR_createEntity]; | |
| } | |
| - (void)tearDown | |
| { | |
| _this = nil; | |
| [MagicalRecord cleanUp]; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment