购物车模块实例。购物车模块可以浏览商品类别;可以根据商品类别浏览商品信息;可以购买商品;可以查看购物车的商品;可以修改购买商品的数量和删除购买的商品。
源代码在线查看: testcartdataforwindow.java~27~
package junittest;
import junit.framework.*;
import data.*;
public class TestCartDataForWindow extends TestCase {
private CartDataForWindow cartDataForWindow = null;
protected void setUp() throws Exception {
super.setUp();
}
protected void tearDown() throws Exception {
cartDataForWindow = null;
super.tearDown();
}
//测试取得产品数组的方法
public void testGetProducts() throws Exception {
cartDataForWindow = new CartDataForWindow();
int categoryId = 1;
Object[][] expectedReturn = null;
Object[][] actualReturn = cartDataForWindow.getProducts(categoryId);
//测试返回的数组行数
assertEquals("return value", 12, actualReturn.length);
//测试返回的数组列数
assertEquals("return value", 6, actualReturn[0].length);
}
//测试取得产品类别数组的方法
public void testGetCategories() throws Exception {
cartDataForWindow = new CartDataForWindow();
Object[][] expectedReturn = null;
Object[][] actualReturn = cartDataForWindow.getCategories();
assertEquals("return value", 8, actualReturn.length);
}
}