ObjectiveRecord icon indicating copy to clipboard operation
ObjectiveRecord copied to clipboard

added setDefaultModelFromClass for test purpose

Open nanashi opened this issue 12 years ago • 0 comments

Support for Xcode Unit Test.

Example: in test case file

+(void)setUp{
  [super setUp];
  [[CoreDataManager sharedManager] setDefaultModelFromClass:[self class]];
  [[CoreDataManager sharedManager] useInMemoryStore];
}

Inspired by http://www.cimgf.com/2012/05/15/unit-testing-with-core-data/ "Supporting Xcode’s Unit Test Support" Section

nanashi avatar Oct 28 '13 07:10 nanashi