forked from Shopify/ObjectiveRecord
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCoreDataTestCase.h
More file actions
31 lines (23 loc) · 849 Bytes
/
CoreDataTestCase.h
File metadata and controls
31 lines (23 loc) · 849 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// CoreDataTestCase.h
// ObjectiveRecord
//
// Created by Matthew Newberry on 8/5/10.
// Copyright (c) 2010 Shopify. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <SenTestingKit/SenTestingKit.h>
@class ActiveManager;
@interface CoreDataTestCase : SenTestCase {
NSManagedObjectContext *_managedObjectContext;
NSManagedObjectModel *_managedObjectModel;
NSPersistentStoreCoordinator *_persistentStoreCoordinator;
NSArray *_testData;
ActiveManager *_activeManager;
}
@property (nonatomic, retain) ActiveManager *activeManager;
@property (nonatomic, retain) NSManagedObjectContext *managedObjectContext;
@property (nonatomic, retain) NSManagedObjectModel *managedObjectModel;
@property (nonatomic, retain) NSPersistentStoreCoordinator *persistentStoreCoordinator;
@property (nonatomic, retain) NSArray *testData;
@end