Exemplo n.º 1
0
 public void TestSquare2()
 {
     var t = new RightTriangle(534, 712, 890);
     Assert.AreEqual(190104, t.GetSquare());
 }
Exemplo n.º 2
0
 public void WrongSquare()
 {
     var t = new RightTriangle(534, 712, 890);
     Assert.AreEqual(190105, t.GetSquare());
 }
Exemplo n.º 3
0
 public void TestSquare1()
 {
     var t = new RightTriangle(3, 4, 5);
     Assert.AreEqual(6, t.GetSquare());
 }