@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()); }
@Test public void testGetNameProperty() throws Exception { assertEquals("Test-Product", product.getNameProperty().getValue()); }