Пример #1
0
 public void CompanyTest()
 {
     Recruiter target = new Recruiter(); // TODO: Initialize to an appropriate value
     Company expected = null; // TODO: Initialize to an appropriate value
     Company actual;
     target.Company = expected;
     actual = target.Company;
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
Пример #2
0
 public void RecruiterConstructorTest()
 {
     Recruiter target = new Recruiter();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }