예제 #1
0
 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.");
 }
예제 #2
0
 public void createUserEmptyList(string userName)
 {
     User newUser = new User();
     newUser.userName = userName;
     userList.Add(newUser);
 }
예제 #3
0
 public void createUserWithList(string newUser, List<string> followsList)
 {
     User newUserObject = new User();
     newUserObject.userName = newUser;
     newUserObject.follows = followsList;
     userList.Add(newUserObject);
 }
예제 #4
0
 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.");
 }
예제 #5
0
 /// <summary>
 ///A test for User Constructor
 ///</summary>
 public void UserConstructorTest()
 {
     User target = new User();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }