// Beth Katz, February 2008 import static org.junit.Assert.*; import org.junit.Test; public class TestCoinPurse { @Test public void checkValue( ) { CoinPurse p = new CoinPurse(1, 2, 3, 4); assertTrue("Incorrect value", p.value( ) == 64); } }