public void getAllPayRollItemTest()
 {
     PayrollImpl target = new PayrollImpl(); // TODO: Initialize to an appropriate value
     List<PayrollItem> expected = null; // TODO: Initialize to an appropriate value
     List<PayrollItem> actual;
     actual = target.getAllPayRollItem();
     Assert.AreEqual(expected, actual);
     Assert.Inconclusive("Verify the correctness of this test method.");
 }
 public void PayrollImplConstructorTest()
 {
     PayrollImpl target = new PayrollImpl();
     Assert.Inconclusive("TODO: Implement code to verify target");
 }