public void setY_ValueTest()
 {
     fPoint target = new fPoint(); // TODO: Initialize to an appropriate value
     float performance = 1230F; // TODO: Initialize to an appropriate value
     target.setY_Value(performance);
     Assert.AreEqual(target.getY_Value_AsFloat(), performance);
 }
 public void fPointConstructorTest()
 {
     fPoint target = new fPoint();
     Assert.AreEqual(target.getX_Age(), 1111f);
     Assert.AreEqual(target.getY_Value_AsFloat(), 1111f);
 }
 public void getY_Value_AsFloatTest()
 {
     fPoint target = new fPoint(); // TODO: Initialize to an appropriate value
     float expected = 1111F; // TODO: Initialize to an appropriate value
     float actual;
     actual = target.getY_Value_AsFloat();
     Assert.AreEqual(expected, actual);
 }