Example #1
0
 /** Test of percent method, of class Units. */
 @Test
 public void testPercent() {
   int percentagePoints = 0;
   Percentage expResult = new Percentage(0);
   Percentage result = Units.percent(percentagePoints);
   assertEquals(expResult, result);
 }