示例#1
0
 public void GetEmployeesTest()
 {
     IEmpDBContext empDBContext = null; // TODO: Initialize to an appropriate value
     EmployeeService target = new EmployeeService(empDBContext); // TODO: Initialize to an appropriate value
     List<Employee> expected = null; // TODO: Initialize to an appropriate value
     List<Employee> actual;
     actual = target.GetEmployees();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }