1
用單元測試測試基本增量是否有興趣?是否有興趣在單元測試中測試基本增量?
在測試類的方法
@Test
public void testIncreaseString() throws Exception {
}
方法在原始類
public void increaseString() {
counterString++;
}
用單元測試測試基本增量是否有興趣?是否有興趣在單元測試中測試基本增量?
在測試類的方法
@Test
public void testIncreaseString() throws Exception {
}
方法在原始類
public void increaseString() {
counterString++;
}
你的方法是公共的,並執行邏輯,因此是有意義的測試。
然而,這種方法
public void increaseString() {
counterString++;
}
不返回結果。所以爲了測試這個方法的行爲,你應該檢查這個方法的副作用。
例如,如果您有一個方法String getCounter()
返回值counterString
您可以使用此方法進行斷言。
'counterString'不能是一個字符串,因爲'String'不支持增量操作符。我想'counterString'是一個'int'。 – khelwood