public void GetEmployees_ListOfIds_ListOfEmployees() { IList<Employee> employee; using (var dbContext = new DatabaseContext(testUser, testPass)) { var repository = new EmployeesRepository(dbContext); var ids = new int[5] { 1, 2, 3, 4, 5 }; employee = repository.GetByIdList(ids); } Assert.IsTrue(employee.Count > 1); }