String bookName = "";
BookBean instance = new BookBean();
instance.setBookName(bookName);
// TODO review the generated test code and remove the default call to fail.
fail("The test case is a prototype.");
}
}
·对于要被测试的BookBean类中的四个方法,NetBeans都自动编写了测试代码框架。
·开发者可以根据需要对自动生成的测试代码进行适当的修改。
三、修改并运行测试程序:
修改后的代码如下:
view plaincopy to clipboardprint?
import junit.framework.*;
/**
*
* @author 雁过留声
*/
public class BookBeanTest extends TestCase{
BookBean book = null;
public BookBeanTest(String testName) {
super(testName);
文章来源于领测软件测试网 https://www.ltesting.net/