mirror of
https://github.com/zhigang1992/NTDCoreDataTableViewController.git
synced 2026-03-30 16:24:33 +08:00
30 lines
639 B
Objective-C
30 lines
639 B
Objective-C
//
|
|
// NTDCoreDataTableViewControllerTests.m
|
|
// NTDCoreDataTableViewControllerTests
|
|
//
|
|
// Created by Nicholas Tian on 3/8/14.
|
|
// Copyright (c) 2014 Nicholas Tian. All rights reserved.
|
|
//
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
@interface NTDCoreDataTableViewControllerTests : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation NTDCoreDataTableViewControllerTests
|
|
|
|
- (void)setUp
|
|
{
|
|
[super setUp];
|
|
// Put setup code here. This method is called before the invocation of each test method in the class.
|
|
}
|
|
|
|
- (void)tearDown
|
|
{
|
|
// Put teardown code here. This method is called after the invocation of each test method in the class.
|
|
[super tearDown];
|
|
}
|
|
|
|
@end
|