Exemplo n.º 1
0
 public void DeleteTest()
 {
     IEmpDBContext empDBContext = null; // TODO: Initialize to an appropriate value
     EmployeeService target = new EmployeeService(empDBContext); // TODO: Initialize to an appropriate value
     Employee employee = null; // TODO: Initialize to an appropriate value
     bool expected = false; // TODO: Initialize to an appropriate value
     bool actual;
     actual = target.Delete(employee);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Exemplo n.º 2
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.");
 }
Exemplo n.º 3
0
 public void EmployeeServiceConstructorTest()
 {
     IEmpDBContext empDBContext = null; // TODO: Initialize to an appropriate value
     EmployeeService target = new EmployeeService(empDBContext);
     Assert.Inconclusive("TODO: Implement code to verify target");
 }