Esempio n. 1
0
        public async Task TestAddUserAndDeleteUserAsync()
        {
            string authToken = await Communication.AddUser(IP, PORT);

            Assert.IsTrue(authToken != null);
            bool sucess = await Communication.DeleteUser(IP, PORT, authToken);

            Assert.IsTrue(sucess);
        }