コード例 #1
0
ファイル: ProductTest.java プロジェクト: qfs/SupiKasse
 @Test
 public void testEmptyConstructor() throws Exception {
   product = new Product("5678");
   assertEquals("5678", product.getEan());
   assertNull(product.getName());
   assertNotNull(product.getNameProperty());
   assertEquals(0, product.getPrice());
   assertNotNull(product.getPriceProperty());
 }
コード例 #2
0
ファイル: ProductTest.java プロジェクト: qfs/SupiKasse
 @Test
 public void testGetEan() throws Exception {
   assertEquals("1234", product.getEan());
 }