0
我是新來的JUnit測試,我有以下的測試 -JUnit的錯誤 - AssertionFailedError異常
public class ItemsTest extends TestCase {
private Items itemsd;
protected void setUp() throws Exception {
super.setUp();
itemsd = new Items();
}
@Test
public void testGetCategory() {
boolean result = itemsd.getCategory() != null;
Assert.assertTrue(result);
}
}
哪些測試這真的很簡單的代碼 -
/**
* @return Returns the category.
*/
public String getCategory() {
return category;
}
很顯然,我是缺少在這裏簡單的東西?
測試會更容易些,如果你寫Assert.assertNotNull閱讀( itemsd.getCategory()); –