Esempio n. 1
0
 public void getAllDeptTest()
 {
     CompanyImpl target = new CompanyImpl(); // TODO: Initialize to an appropriate value
     List<Department> actual;
     actual = target.getAllDept();
     Assert.AreEqual(5, actual.Count);
 }
Esempio n. 2
0
 public void getChildDeptTest()
 {
     CompanyImpl target = new CompanyImpl(); // TODO: Initialize to an appropriate value
     string parentDeptId = string.Empty; // TODO: Initialize to an appropriate value
     List<Department> expected = null; // TODO: Initialize to an appropriate value
     List<Department> actual;
     actual = target.getChildDept(parentDeptId);
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Esempio n. 3
0
 public void getCompanyTest()
 {
     CompanyImpl target = new CompanyImpl(); // TODO: Initialize to an appropriate value
     Company expected = new Company(); // TODO: Initialize to an appropriate value
     Company actual;
     actual = target.getCompany();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Esempio n. 4
0
 public void CompanyImplConstructorTest()
 {
     CompanyImpl target = new CompanyImpl();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }