mirror of
https://github.com/zhigang1992/RestKit.git
synced 2026-04-02 22:42:45 +08:00
35 lines
501 B
Objective-C
35 lines
501 B
Objective-C
//
|
|
// RKTableViewCellMappingTest.m
|
|
// RestKit
|
|
//
|
|
// Created by Blake Watters on 8/4/11.
|
|
// Copyright (c) 2009-2012 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
|