Пример #1
0
        public void EditDescriptionTest()
        {
            // User First Name is April, this test will change it to March
            UserManagementDTO descriptionChange = new UserManagementDTO()
            {
                UserName    = "******",
                Description = "Edited Description"
            };
            ResponseDTO <Boolean> found = userMan.EditDescription(descriptionChange);

            Assert.True(found.IsSuccessful);
        }
Пример #2
0
        public void EditDescriptionTest()
        {
            // User First Name is April, this test will change it to March
            UserManagementDTO descriptionChange = new UserManagementDTO()
            {
                UserName    = "******",
                Description = "Edited Description"
            };
            // Act
            var response = userMan.EditDescription(descriptionChange);

            // Assert
            Assert.True(response.IsSuccessful);
        }