Files
RestKit/Code/Testing/RKTestConstants.m
Blake Watters 5942771e41 Migrated RKTestFactory constants into an external file due to issues with unresolved symbols when
building Tests for iOS Devices (worked fine on Simulator). It's unclear exactly what the underlying
issue is.
2012-05-04 11:52:29 -04:00

20 lines
814 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 RKTestFactoryDefaultNamesMappingProvider = @"mappingProvider";
NSString * const RKTestFactoryDefaultNamesManagedObjectStore = @"managedObjectStore";
NSString * const RKTestFactoryDefaultStoreFilename = @"RKTests.sqlite";