mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-03 09:45:10 +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
35 lines
492 B
Objective-C
35 lines
492 B
Objective-C
//
|
|
// RKTableViewCellMappingTest.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 8/4/11.
|
|
// Copyright 2011 RestKit. All rights reserved.
|
|
//
|
|
|
|
#import "RKTestEnvironment.h"
|
|
#import "RKTableViewCellMapping.h"
|
|
|
|
@interface RKTableViewCellMappingTest : RKTestCase
|
|
|
|
@end
|
|
|
|
@implementation RKTableViewCellMappingTest
|
|
|
|
- (void)testCallTheDesignatedInitializerOnUITableViewCell {
|
|
|
|
}
|
|
|
|
- (void)testDequeueReusableCells {
|
|
|
|
}
|
|
|
|
- (void)testSetTheAccessoryType {
|
|
|
|
}
|
|
|
|
- (void)testSetTheCellStyle {
|
|
|
|
}
|
|
|
|
@end
|