public void ToStringTest() { User target = new User(); // TODO: Initialize to an appropriate value string expected = string.Empty; // TODO: Initialize to an appropriate value string actual; actual = target.ToString(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
public void createUserEmptyList(string userName) { User newUser = new User(); newUser.userName = userName; userList.Add(newUser); }
public void createUserWithList(string newUser, List<string> followsList) { User newUserObject = new User(); newUserObject.userName = newUser; newUserObject.follows = followsList; userList.Add(newUserObject); }
public void userFollowsTest() { User target = new User(); // TODO: Initialize to an appropriate value string follow = string.Empty; // TODO: Initialize to an appropriate value bool expected = false; // TODO: Initialize to an appropriate value bool actual; actual = target.userFollows(follow); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }
/// <summary> ///A test for User Constructor ///</summary> public void UserConstructorTest() { User target = new User(); Assert.Inconclusive("TODO: Implement code to verify target"); }