Esempio n. 1
0
 public void AreYouAliveTest()
 {
     WonderService target = new WonderService(); // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.AreYouAlive();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Esempio n. 2
0
 public void checkUserStatusTest()
 {
     WonderService target = new WonderService(); // TODO: Initialize to an appropriate value
     string IMEI = string.Empty; // TODO: Initialize to an appropriate value
     string EventKey = string.Empty; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.checkUserStatus(IMEI, EventKey);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Esempio n. 3
0
 public void UpdateStatusesTest()
 {
     WonderService target = new WonderService(); // TODO: Initialize to an appropriate value
     string userName = string.Empty; // TODO: Initialize to an appropriate value
     string password = string.Empty; // TODO: Initialize to an appropriate value
     string questionID = string.Empty; // TODO: Initialize to an appropriate value
     string studentID = string.Empty; // TODO: Initialize to an appropriate value
     string acceptQuetion = string.Empty; // TODO: Initialize to an appropriate value
     string banUser = string.Empty; // TODO: Initialize to an appropriate value
     string questionStatus = string.Empty; // TODO: Initialize to an appropriate value
     string eventKey = string.Empty; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.UpdateStatuses(userName, password, questionID, studentID, acceptQuetion, banUser, questionStatus, eventKey);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Esempio n. 4
0
 public void WonderServiceConstructorTest()
 {
     WonderService target = new WonderService();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }
Esempio n. 5
0
 public void StoreEventTest()
 {
     WonderService target = new WonderService(); // TODO: Initialize to an appropriate value
     string eventKey = string.Empty; // TODO: Initialize to an appropriate value
     string userName = string.Empty; // TODO: Initialize to an appropriate value
     string password = string.Empty; // TODO: Initialize to an appropriate value
     string title = string.Empty; // TODO: Initialize to an appropriate value
     string details = string.Empty; // TODO: Initialize to an appropriate value
     string status = string.Empty; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.StoreEvent(eventKey, userName, password, title, details, status);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Esempio n. 6
0
 public void MarkQuestionAsAnsweredTest()
 {
     WonderService target = new WonderService(); // TODO: Initialize to an appropriate value
     string IMEI = string.Empty; // TODO: Initialize to an appropriate value
     string questionID = string.Empty; // TODO: Initialize to an appropriate value
     string status = string.Empty; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.MarkQuestionAsAnswered(IMEI, questionID, status);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Esempio n. 7
0
 public void LoginTest()
 {
     WonderService target = new WonderService(); // TODO: Initialize to an appropriate value
     string EventKey = string.Empty; // TODO: Initialize to an appropriate value
     string IMEI = string.Empty; // TODO: Initialize to an appropriate value
     string NickName = string.Empty; // TODO: Initialize to an appropriate value
     string Code = string.Empty; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.Login(EventKey, IMEI, NickName, Code);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Esempio n. 8
0
 public void LoginLecturerTest()
 {
     WonderService target = new WonderService(); // TODO: Initialize to an appropriate value
     string userName = string.Empty; // TODO: Initialize to an appropriate value
     string password = string.Empty; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.LoginLecturer(userName, password);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Esempio n. 9
0
 public void LoadQuestionsByUserByEventTest()
 {
     WonderService target = new WonderService(); // TODO: Initialize to an appropriate value
     string EventKey = string.Empty; // TODO: Initialize to an appropriate value
     string userName = string.Empty; // TODO: Initialize to an appropriate value
     string password = string.Empty; // TODO: Initialize to an appropriate value
     string studentID = string.Empty; // TODO: Initialize to an appropriate value
     string expected = string.Empty; // TODO: Initialize to an appropriate value
     string actual;
     actual = target.LoadQuestionsByUserByEvent(EventKey, userName, password, studentID);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }