Exemplo n.º 1
0
 public void TestConstructorRoundedRectangleXYWidthHeight()
 {
     float x = 0;
     float y = 0;
     float width = 0;
     float height = 0;
     RoundedRectangle testRoundedRectangle = new RoundedRectangle(x, y, width, height);
     Assert.IsNotNull(testRoundedRectangle, "Constructor of type, RoundedRectangle failed to create instance.");
     Assert.Fail("Create or modify test(s).");
 }
Exemplo n.º 2
0
 public void TearDown()
 {
     _unitUnderTest = null;
 }
Exemplo n.º 3
0
 public void TestConstructorRoundedRectangle()
 {
     RoundedRectangle testRoundedRectangle = new RoundedRectangle();
     Assert.IsNotNull(testRoundedRectangle, "Constructor of type, RoundedRectangle failed to create instance.");
     Assert.Fail("Create or modify test(s).");
 }
Exemplo n.º 4
0
 public void SetUp()
 {
     _unitUnderTest = new RoundedRectangle();
 }