mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-01-12 22:51:50 +08:00
19 lines
734 B
Objective-C
19 lines
734 B
Objective-C
//
|
|
// RKTestConstants.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 5/4/12.
|
|
// Copyright (c) 2012 RestKit. All rights reserved.
|
|
//
|
|
|
|
/*
|
|
This file defines constants used by the Testing module. It is necessary due to strange
|
|
linking errors when building for the Device. When these constants were defined within
|
|
RKTestFactory.m, they would resolve on the Simulator but produce linker when building
|
|
for Device. [sbw - 05/04/2012]
|
|
*/
|
|
NSString * const RKTestFactoryDefaultNamesClient = @"client";
|
|
NSString * const RKTestFactoryDefaultNamesObjectManager = @"objectManager";
|
|
NSString * const RKTestFactoryDefaultNamesManagedObjectStore = @"managedObjectStore";
|
|
NSString * const RKTestFactoryDefaultStoreFilename = @"RKTests.sqlite";
|