public void FloatToTimeTest() { float minutes = 0F; // TODO: Initialize to an appropriate value TimeSpan expected = new TimeSpan(); // TODO: Initialize to an appropriate value TimeSpan actual; actual = ConversionManager.FloatToTime(minutes); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }