iOS單元測試和UI測試全面解析(6)
發表于:2017-03-31來源:51CTO作者:朱先忠點擊數:
標簽:單元測試iOS
//XCTAssert to testmodel functestScoreIsComputed(){ //1.given letguess=gameUnderTest.targetValue+5 //2. when _=gameUnderTest. check (guess:guess) //3. then
// XCTAssert to test model
func testScoreIsComputed() {
// 1. given
let guess = gameUnderTest.targetValue + 5
// 2. when
_ = gameUnderTest.check(guess: guess)
// 3. then
原文轉自:http://mobile.51cto.com/iphone-535758.htm