mirror of
https://github.com/wu736139669/Ash_First.git
synced 2026-08-06 06:13:51 +00:00
35 lines
636 B
Objective-C
35 lines
636 B
Objective-C
//
|
|
// Ash_FirstTests.m
|
|
// Ash_FirstTests
|
|
//
|
|
// Created by xmfish on 14-7-1.
|
|
// Copyright (c) 2014年 xmfish. All rights reserved.
|
|
//
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
@interface Ash_FirstTests : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation Ash_FirstTests
|
|
|
|
- (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];
|
|
}
|
|
|
|
- (void)testExample
|
|
{
|
|
XCTFail(@"No implementation for \"%s\"", __PRETTY_FUNCTION__);
|
|
}
|
|
|
|
@end
|