예제 #1
0
 /** Test of getValue method, of class Amount. */
 @Test
 public void testGetValue() {
   System.out.println("getValue");
   Amount instance = new Amount(0);
   double expResult = 0.0;
   double result = instance.getValue();
   assertEquals(expResult, result, 0.0);
 }