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."); }
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."); }
public void ShapeConstructorTest() { Shape target = new Shape(); Assert.Inconclusive("TODO: Implement code to verify target"); }
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."); }