예제 #1
0
 public void heightTest()
 {
     Rectangle source = new Rectangle(); // TODO: Initialize to an appropriate value
       int horizontal_position = 0; // TODO: Initialize to an appropriate value
       int vertical_position = 0; // TODO: Initialize to an appropriate value
       int width = 0; // TODO: Initialize to an appropriate value
       Level.Tile target = new Level.Tile(source, horizontal_position, vertical_position, width); // TODO: Initialize to an appropriate value
       int actual;
       actual = target.height;
       Assert.Inconclusive("Verify the correctness of this test method.");
 }
예제 #2
0
 public void Level_TileConstructorTest()
 {
     Rectangle source = new Rectangle(); // TODO: Initialize to an appropriate value
       int horizontal_position = 0; // TODO: Initialize to an appropriate value
       int vertical_position = 0; // TODO: Initialize to an appropriate value
       int width = 0; // TODO: Initialize to an appropriate value
       Level.Tile target = new Level.Tile(source, horizontal_position, vertical_position, width);
       Assert.Inconclusive("TODO: Implement code to verify target");
 }
예제 #3
0
 public void makeSolidTest()
 {
     Rectangle source = new Rectangle(); // TODO: Initialize to an appropriate value
       int horizontal_position = 0; // TODO: Initialize to an appropriate value
       int vertical_position = 0; // TODO: Initialize to an appropriate value
       int width = 0; // TODO: Initialize to an appropriate value
       Level.Tile target = new Level.Tile(source, horizontal_position, vertical_position, width); // TODO: Initialize to an appropriate value
       target.makeSolid();
       Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }