Example #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).");
 }
Example #2
0
 public void TearDown()
 {
     _unitUnderTest = null;
 }
Example #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).");
 }
Example #4
0
 public void SetUp()
 {
     _unitUnderTest = new RoundedRectangle();
 }