Ejemplo n.º 1
0
 public void CarryWeightTest()
 {
     string actorName = string.Empty; // TODO: Initialize to an appropriate value
     Player target = new Player(actorName); // TODO: Initialize to an appropriate value
     int actual;
     actual = target.CarryWeight;
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Ejemplo n.º 2
0
 public void ActorLocationTest()
 {
     string actorName = string.Empty; // TODO: Initialize to an appropriate value
     Player target = new Player(actorName); // TODO: Initialize to an appropriate value
     ILocations expected = null; // TODO: Initialize to an appropriate value
     ILocations actual;
     target.ActorLocation = expected;
     actual = target.ActorLocation;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Ejemplo n.º 3
0
 ///<summary>
 /// Constructor
 ///</summary>
 public TerrianPrinter(IList<ILocations> list, Player player)
 {
     _list = list;
     _player = player;
 }
Ejemplo n.º 4
0
 public void DropGreenTest()
 {
     string actorName = string.Empty; // TODO: Initialize to an appropriate value
     Player target = new Player(actorName); // TODO: Initialize to an appropriate value
     Color expected = new Color(); // TODO: Initialize to an appropriate value
     Color actual;
     actual = target.DropGreen();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Ejemplo n.º 5
0
 public void PlayerConstructorTest2()
 {
     string actorName = string.Empty; // TODO: Initialize to an appropriate value
     int health = 0; // TODO: Initialize to an appropriate value
     int carryWeight = 0; // TODO: Initialize to an appropriate value
     Player target = new Player(actorName, health, carryWeight);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Ejemplo n.º 6
0
 public void PlayerConstructorTest()
 {
     string actorName = string.Empty; // TODO: Initialize to an appropriate value
     Player target = new Player(actorName);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Ejemplo n.º 7
0
 public void PickUpTest()
 {
     string actorName = string.Empty; // TODO: Initialize to an appropriate value
     Player target = new Player(actorName); // TODO: Initialize to an appropriate value
     IItem item = null; // TODO: Initialize to an appropriate value
     target.PickUp(item);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }
Ejemplo n.º 8
0
 public void ExploreTerrainTest()
 {
     string actorName = string.Empty; // TODO: Initialize to an appropriate value
     Player target = new Player(actorName); // TODO: Initialize to an appropriate value
     ILocations startingLocations = null; // TODO: Initialize to an appropriate value
     target.ExploreTerrain(startingLocations);
     Assert.Inconclusive("A method that does not return a value cannot be verified.");
 }