Beispiel #1
0
 @Test
 public void IntValue() {
   PercentType pt = new PercentType(100);
   assertEquals("100", pt.toString());
 }
Beispiel #2
0
 @Test
 public void DoubleValue() {
   PercentType pt = new PercentType("0.0001");
   assertEquals("0.0001", pt.toString());
 }