public void testNullsInName() {
fail("sample failure");
Person p = new Person(null, "lastName");
assertEquals("lastName", p.getFullName());
p = new Person("Tanner", null);
assertEquals("Tanner ?", p.getFullName());
}
I have difficulty in understanding fail in Junit . Could anybody please tell me what is the use of fail in the above method ?? ( I want to know what it is responsible to do there )
And typically if i want to add this below line also in the above code . how could i add
Person p = new Person(null, "lastName"); // After this statement
if(p==null)
{
// then dont proceed further to the further execution
// Show the Junit Test case as PASS .
}
Please help me .