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