@ -0,0 +1,15 @@
package de.hs_fulda.ciip.projjpn;
public class Item {
// price
// customerReview
// productTitle
// description
// tags
int availability = 0;
public boolean inStock() {
return availability > 0;
}
@ -0,0 +1,16 @@
import junit.framework.TestCase;
public class ItemTest extends TestCase {
public void test_ItemNotInStock() {
// Given
Item item = new Item();
// When
boolean notInStock = item.inStock();
// Then
assertFalse(notInStock);