package fr.mch.mdo.restaurant.web.struts.actions; import junit.framework.Test; import junit.framework.TestCase; import junit.framework.TestSuite; public class ProductsManagerActionTest extends TestCase { /** * Create the test case * * @param testName * name of the test case */ public ProductsManagerActionTest(String testName) { super(testName); } /** * @return the suite of tests being tested */ public static Test suite() { return new TestSuite(ProductsManagerActionTest.class); } public void testProductsManagerAction() { } public void testAdd() { } public void testRemove() { } public void testAddCategory() { } public void testSave() { } public void testRemoveCategory() { } public void testPostProcessList() { } public void testForm() { } public void testGetLanguages() { } public void testSetLanguages() { } public void testSetServletRequest() { } public void testGetProductSpecialCodesList() { } public void testSetProductSpecialCodesList() { } public void testGetValueAddedTaxesList() { } public void testSetValueAddedTaxesList() { } public void testGetCategoriesList() { } public void testSetCategoriesList() { } }