コード例 #1
0
        public void GetAllUsersTest()
        {
            string NetworkName = string.Empty; // TODO: Initialize to an appropriate value
            string expected    = string.Empty; // TODO: Initialize to an appropriate value
            string actual;

            actual = ImifiedFacade.GetAllUsers(NetworkName);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
コード例 #2
0
        public void SendMessageTest()
        {
            string UserKey     = "37BB44D4-4027-41CD-B8AF9605F1D8B094"; // TODO: Initialize to an appropriate value
            string MessageText = "hello brij, good morning";            // TODO: Initialize to an appropriate value
            string expected    = string.Empty;                          // TODO: Initialize to an appropriate value
            string actual;

            actual = ImifiedFacade.SendMessage(UserKey, MessageText);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }
コード例 #3
0
        public void GetUserIdByUserNameTest()
        {
            string UserName    = "******";          // TODO: Initialize to an appropriate value
            string NetworkName = string.Empty;                          // TODO: Initialize to an appropriate value
            string expected    = "37BB44D4-4027-41CD-B8AF9605F1D8B094"; // TODO: Initialize to an appropriate value
            string actual;

            actual = ImifiedFacade.GetUserIdByUserName(UserName, NetworkName);
            Assert.AreEqual(expected, actual);
            Assert.Inconclusive("Verify the correctness of this test method.");
        }