Files
RestKit/Tests/Models/RKTestAddress.h
Blake Watters 4142ffdb42 Reorganization and cleanups of Unit Tests
* 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
2012-02-10 17:32:23 -05:00

26 lines
527 B
Objective-C

//
// RKTestAddress.h
// RestKit
//
// Created by Blake Watters on 8/5/11.
// Copyright 2011 RestKit. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface RKTestAddress : NSObject {
NSNumber* _addressID;
NSString* _city;
NSString* _state;
NSString* _country;
}
@property (nonatomic, retain) NSNumber* addressID;
@property (nonatomic, retain) NSString* city;
@property (nonatomic, retain) NSString* state;
@property (nonatomic, retain) NSString* country;
+ (RKTestAddress*)address;
@end