Esempio n. 1
0
        public void TestcaseWithPositifEdge()
        {
            CSharpApplication.Triangle triangle1 = new CSharpApplication.Triangle(4, 5, 6);


            Assert.AreEqual(4, triangle1.getA());
            Assert.AreEqual(5, triangle1.getB());
            Assert.AreEqual(6, triangle1.getC());
        }
Esempio n. 2
0
 public void TestCaseWithNegatifEdge()
 {
     CSharpApplication.Shape triangle1 = new CSharpApplication.Triangle(1, -2, 3);
 }