-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOTRestModelMapperTest.h
More file actions
33 lines (23 loc) · 935 Bytes
/
OTRestModelMapperTest.h
File metadata and controls
33 lines (23 loc) · 935 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// OTRestModelMapperTest.h
// OTRestFramework
//
// Created by Jeremy Ellison on 8/17/09.
// Copyright 2009 Two Toasters. All rights reserved.
//
// See Also: http://developer.apple.com/iphone/library/documentation/Xcode/Conceptual/iphone_development/135-Unit_Testing_Applications/unit_testing_applications.html
// Dependent unit tests mean unit test code depends on an application to be injected into.
// Setting this to 0 means the unit test code is designed to be linked into an independent executable.
#define USE_DEPENDENT_UNIT_TEST 1
#import <SenTestingKit/SenTestingKit.h>
//#import "application_headers" as required
@interface OTRestModelMapperTest : SenTestCase {
}
- (void)testIsParentSelector;
- (void)testContainingElementNameForSelector;
- (void)testChildElementNameForSelector;
- (void)testJSONMapping;
- (void)testJSONCollectionMapping;
- (void)testXMLMapping;
- (void)testXMLCollectionMapping;
@end