Beispiel #1
0
 /// <summary>
 /// The EmployeeType property value must be accessed and modified
 ///  only by code within the Employee class or within a class derived
 ///  from the Employee class.You need to ensure that the implementation
 ///  of the EmployeeType property meets the requirements
 /// </summary>
 public void AnotherClassTest()
 {
     var employee = new Employee();
     //Console.WriteLine(employee.EmployeeType);
     //test passed
 }
 public void Number1()
 {
     var test = new Employee();
     Assert.That(test, Is.Not.Null);
 }