Extern RKTestFactoryDefaultStoreFilename symbol

This commit is contained in:
Blake Watters
2012-04-30 14:13:08 -04:00
parent 3921337209
commit 79adb0ef75
2 changed files with 8 additions and 1 deletions

View File

@@ -8,6 +8,13 @@
#import <RestKit/RestKit.h>
/**
The default filename used for managed object stores created via the factory.
@see [RKTestFactory setManagedObjectStoreFilename:]
*/
extern NSString * const RKTestFactoryDefaultStoreFilename;
/**
Defines optional callback methods for extending the functionality of the
factory. Implementation can be provided via a category.

View File

@@ -12,7 +12,7 @@ NSString * const RKTestFactoryDefaultNamesClient = @"client";
NSString * const RKTestFactoryDefaultNamesObjectManager = @"objectManager";
NSString * const RKTestFactoryDefaultNamesMappingProvider = @"mappingProvider";
NSString * const RKTestFactoryDefaultNamesManagedObjectStore = @"managedObjectStore";
static NSString * const RKTestFactoryDefaultStoreFilename = @"RKTests.sqlite";
NSString * const RKTestFactoryDefaultStoreFilename = @"RKTests.sqlite";
@interface RKTestFactory ()