public void BenchmarkView()
 {
     obj.GetAllTask();
     obj.GetAllUser();
     obj.GetAllParentTask();
     obj.GetAllProject();
 }
Exemple #2
0
        public void TestGetAllUser()
        {
            int actual = businessObj.GetAllUser().Count;

            Assert.Greater(actual, 0);
        }
Exemple #3
0
 public List <User> GetAllUser()
 {
     return(businessObj.GetAllUser());
 }