public void isScalene_Input456_ResultYes() { int a = 4; int b = 5; int c = 6; bool answer = TriangleSolver.scalene(a, b, c); Assert.IsTrue(answer); }