Exemple #1
0
 public void DescriptionTest()
 {
     Shape target = new Shape(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     target.Description = expected;
     actual = target.Description;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Exemple #2
0
 public void TypeOfResourceTest()
 {
     Shape target = new Shape(); // TODO: Initialize to an appropriate value
     ResourceType expected = new ResourceType(); // TODO: Initialize to an appropriate value
     ResourceType actual;
     target.TypeOfResource = expected;
     actual = target.TypeOfResource;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Exemple #3
0
 public void ShapeConstructorTest()
 {
     Shape target = new Shape();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Exemple #4
0
 public void IdentifierTest()
 {
     Shape target = new Shape(); // TODO: Initialize to an appropriate value
     Guid expected = new Guid(); // TODO: Initialize to an appropriate value
     Guid actual;
     target.Identifier = expected;
     actual = target.Identifier;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }