-(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 {
//所有的測試方法都以test開始,且沒有參數。
// This is an example of a functional test case.
// Use XCTAssert and related functions to verify your tests produce the correct results.
}