mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-28 12:45:33 +08:00
* Reorganized tests to accommodate split into Logic & Application. * Eliminated 'Spec' naming in favor of 'Test' as the suite is entirely based on SenTest. * Pulled majority of testing support classes up into the library and documented them. * Introduced RKApplicationTests app for running the RKTableController UI tests
16 lines
373 B
Plaintext
16 lines
373 B
Plaintext
//
|
|
// Prefix header for all source files of the 'RKApplicationTests' target in the 'RKApplicationTests' project
|
|
//
|
|
|
|
#import <Availability.h>
|
|
|
|
#ifndef __IPHONE_3_0
|
|
#warning "This project uses features only available in iOS SDK 3.0 and later."
|
|
#endif
|
|
|
|
#ifdef __OBJC__
|
|
#import <UIKit/UIKit.h>
|
|
#import <Foundation/Foundation.h>
|
|
#import <CoreData/CoreData.h>
|
|
#endif
|