public void TestMinus() { var f1 = new Frac(3, 2); var otv = f1.Minus(); Assert.AreEqual(otv.Numerator, -3); Assert.AreEqual(otv.Denominator, 2); }