public void TestMethod2()
        {
            EmployeeApiController employeeApiController = new EmployeeApiController();
            List <Team>           result = employeeApiController.GetTeamList();

            Assert.IsNotNull(result);
        }
        //public void GetInitialFilters(int academicYear)
        public async Task EmployeeSearch(string name)
        {
            // Arrange
            #region UserProfile (not necessary in this test)

            //NOTE: This is a mock (use it when needed to insert it to the new controller/engine instance)
            //Set UserProfile from Mock User (Set values for scenarios)
            var userProfile = this.BuildUserProfile(new List <Claim>()
            {
                new Claim("centerid", "356")
            }, new List <string>()
            {
                "my.custom.permission"
            });

            #endregion

            //Set in Controller
            _Controller = ObjectContainer.GetService <EmployeeApiController>();

            // Act
            PagedListViewModel <EmployeeViewModel> result = await _Controller.SearchAsync(name);

            // Asserts
            Assert.IsNotNull(result.Data.Length > 0, "Should return something");
        }
        public void TestMethod1()
        {
            EmployeeApiController employeeApiController = new EmployeeApiController();
            List <Team>           result = employeeApiController.GetTeamList();


            Assert.IsTrue(result.Count > 0);
        }