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