Package ise.mace.models

Examples of ise.mace.models.ScaledDouble.intValue()


  public void testInit_1()
  {
    ScaledDouble instance = new ScaledDouble(0.54758);

    int expResult = 1;
    int result = instance.intValue();
    assertEquals(expResult, result);
  }

  /**
   * Test of intValue method, of class ScaledDouble.
View Full Code Here


  public void testInit_14()
  {
    ScaledDouble instance = new ScaledDouble(0.87670);

    int expResult = 14;
    int result = instance.intValue();
    assertEquals(expResult, result);
  }

  /**
   * Test of intValue method, of class ScaledDouble.
View Full Code Here

  public void testInit_m14()
  {
    ScaledDouble instance = new ScaledDouble(0.1233);

    int expResult = -14;
    int result = instance.intValue();
    assertEquals(expResult, result);
  }

  /**
   * Test of intValue method, of class ScaledDouble.
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.