public void testFormatDate()
 {
     PatientAssesment pa = new PatientAssesment();
     Assert.IsNotNull(pa);
     DateTime dt = new DateTime();
     string formattedDate = pa.formatDate(dt);
     Assert.IsNotNull(formattedDate);
  
     
 }