public void ConvertToLongDateWithSecond() { DateTime checkDate = DateTime.Now; ACK ack = new ACK(); ack.MSH.DateTimeOfMessage.TimeOfAnEvent.SetLongDateWithSecond(checkDate); Assert.AreEqual(ack.MSH.DateTimeOfMessage.TimeOfAnEvent.Value, checkDate.ToString("yyyyMMddHHmmss")); }
public void ConvertToShortDate() { DateTime checkDate = DateTime.Now; ACK ack = new ACK(); ack.MSH.DateTimeOfMessage.TimeOfAnEvent.SetShortDate(checkDate); Assert.AreEqual(ack.MSH.DateTimeOfMessage.TimeOfAnEvent.Value, checkDate.ToString("yyyyMMdd")); }
public void ConvertBackToShortDate() { DateTime checkDate = DateTime.Now; ACK ack = new ACK(); ack.MSH.DateTimeOfMessage.TimeOfAnEvent.SetShortDate(checkDate); DateTime checkDate2 = ack.MSH.DateTimeOfMessage.TimeOfAnEvent.GetAsDate(); Assert.AreEqual(checkDate.ToShortDateString(), checkDate2.ToShortDateString()); }