public void Test_SreachGetStatusClass_ExecuteMethod_Returns_A_List_of_sise_Five()
        {
            SearchGetUserType userType = new SearchGetUserType();
            int result = userType.Execute().Count;

            Assert.AreEqual(5, result);
        }
        public void Test_SreachGetStatusClass_ExecuteMethod_Returns_A_List_of_strings()
        {
            SearchGetUserType userType = new SearchGetUserType();

            Assert.IsInstanceOf(typeof(List <string>), userType.Execute());
        }
 public void Test_SreachGetStatusClass_ExecuteMethod_Returns_A_List_of_strings()
 {
     SearchGetUserType userType = new SearchGetUserType();
     Assert.IsInstanceOf(typeof(List<string>), userType.Execute());
 }
Example #4
0
 public IList<string> GetUserType()
 {
     SearchGetUserType userType = new SearchGetUserType();
     return userType.Execute();
 }
 public void Test_SreachGetStatusClass_ExecuteMethod_Returns_A_List_of_sise_Five()
 {
     SearchGetUserType userType = new SearchGetUserType();
     int result = userType.Execute().Count;
     Assert.AreEqual(5, result);
 }