book.setBookISBN("ISBN 8-8000-8000-8");
//使用 Assert查看id的属性值是否为ISBN 8-8000-8000-8。
Assert.assertEquals("ISBN 8-8000-8000-8", book.getBookISBN());
System.out.println("BookISBN属性被测试!");
}
public void testBookName() {
book.setBookName("精通NetBeans");
//使用 Assert查看id的属性值是否为精通NetBeans。
Assert.assertEquals("精通NetBeans", book.getBookName());
System.out.println("BookName属性被测试!");
}
}
import junit.framework.*;
/**
*
* @author 雁过留声
*/
public class BookBeanTest extends TestCase{
BookBean book = null;
public BookBeanTest(String testName) {
super(testName);
文章来源于领测软件测试网 https://www.ltesting.net/