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