public void isAuthorTest() { Policy target = new Policy(); // TODO: Initialize to an appropriate value bool expected = false; // TODO: Initialize to an appropriate value bool actual; target.isAuthor = expected; actual = target.isAuthor; Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void PolicyConstructorTest() { Policy target = new Policy(); Assert.Inconclusive("TODO: Implement code to verify target"); }
public UserInformation(Credentials Credentials, Location Location, Policy Policy) { credentials = Credentials; location = Location; policy = Policy; }