**public void testCompareTo() {
System.out.println("compareTo");
Patient p = null;
Patient instance = null;
int expResult = 0;
int result = instance.compareTo(p);
assertEquals(expResult, result);
}**
Is there a way to call a method in a null object or do I have to do an Exception here?