Package edu.ucsd.cs110w.temperature

Examples of edu.ucsd.cs110w.temperature.Fahrenheit.toFahrenheit()


    assertTrue(string.substring(0, endIndex).equals(beginning));
  }
  public void testFahrenheitToFahrenheit()
  {
    Fahrenheit temp = new Fahrenheit(0);
    Temperature convert = temp.toFahrenheit();
    assertEquals(0, convert.getValue(), delta);
  }
  public void testFahrenheitToCelsius(){
    Fahrenheit temp = new Fahrenheit(32);
    Temperature convert = temp.toCelsius();
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.