public void TestSquare() { var f1 = new Frac(3, 2); var otv = f1.Square(); Assert.AreEqual(otv.Numerator, 9); Assert.AreEqual(otv.Denominator, 4); }