mirror of
https://github.com/zhigang1992/shadowsocks-iOS.git
synced 2026-01-12 17:52:30 +08:00
35 lines
655 B
Objective-C
35 lines
655 B
Objective-C
//
|
|
// ShadowsocksXTests.m
|
|
// ShadowsocksXTests
|
|
//
|
|
// Created by clowwindy on 14-2-19.
|
|
// Copyright (c) 2014年 clowwindy. All rights reserved.
|
|
//
|
|
|
|
#import <XCTest/XCTest.h>
|
|
|
|
@interface ShadowsocksXTests : XCTestCase
|
|
|
|
@end
|
|
|
|
@implementation ShadowsocksXTests
|
|
|
|
- (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
|