| // |
| // BKTestStore.h |
| // Broker |
| // |
| // Created by Andrew Smith on 10/24/13. |
| // Copyright (c) 2013 Andrew B. Smith. All rights reserved. |
| // |
| |
| #import <Foundation/Foundation.h> |
| #import <Broker/Broker.h> |
| |
| @interface BKTestStore : NSObject |
| |
| @property (nonatomic, strong) NSPersistentStoreCoordinator *persistentStoreCoordinator; |
| @property (nonatomic, strong) NSManagedObjectContext *managedObjectContext; |
| @property (nonatomic, strong) NSManagedObjectModel *managedObjectModel; |
| |
| @property (nonatomic, strong) BKEntityMap *entityController; |
| |
| - (void)reset:(NSError *)error; |
| |
| @end |