mirror of
https://github.com/zhigang1992/MagicalRecord.git
synced 2026-05-06 16:30:38 +08:00
40 lines
980 B
Objective-C
40 lines
980 B
Objective-C
//
|
|
// NSManagedObjectContextHelperTests.m
|
|
// Magical Record
|
|
//
|
|
// Created by Saul Mora on 7/15/11.
|
|
// Copyright 2011 Magical Panda Software LLC. All rights reserved.
|
|
//
|
|
|
|
#import "NSManagedObjectContextHelperTests.h"
|
|
|
|
@implementation NSManagedObjectContextHelperTests
|
|
|
|
- (void) setUp
|
|
{
|
|
[MagicalRecord setupCoreDataStackWithInMemoryStore];
|
|
}
|
|
|
|
- (void) tearDown
|
|
{
|
|
[MagicalRecord cleanUp];
|
|
}
|
|
|
|
- (void) testCanCreateContextForCurrentThead
|
|
{
|
|
NSManagedObjectContext *firstContext = [NSManagedObjectContext MR_contextForCurrentThread];
|
|
NSManagedObjectContext *secondContext = [NSManagedObjectContext MR_contextForCurrentThread];
|
|
|
|
assertThat(firstContext, is(equalTo(secondContext)));
|
|
}
|
|
|
|
- (void) testCanNotifyDefaultContextOnSave
|
|
{
|
|
NSManagedObjectContext *testContext = [NSManagedObjectContext MR_contextThatNotifiesDefaultContextOnMainThread];
|
|
|
|
assertThat([testContext parentContext], is(equalTo([NSManagedObjectContext MR_defaultContext])));
|
|
}
|
|
|
|
|
|
@end
|