blob: b73736fb96da42d967e5a333714355e8b9a78b5f [file] [log] [blame]
//
// 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