public void WriteRecordTest()
 {
     EmployeeTableController target = new EmployeeTableController();
     Dictionary<string, object> expected = new Dictionary<string, object>();
     expected.Add("ID", Convert.ToInt32(empId));
     expected.Add("Name", empName);
     expected.Add("TimeIn", timeIn);
     expected.Add("LunchOut", lunchOut);
     expected.Add("LunchIn", lunchIn);
     expected.Add("TimeOut", timeOut);
     expected.Add("PayRate", Convert.ToDouble(empPay));
     expected.Add("PwHash", pwHash);
     expected.Add("PTO", Convert.ToDouble(pto));
     target.WriteRecord(expected);
     Dictionary<string, object> actual;
     actual = target.GetRecord(empId, today);
     Assert.IsTrue(recordCompare(expected, actual));
 }