[TEST] Added missing assertEqual for getFirstName

This commit is contained in:
Aman Bhandal 2018-02-25 14:26:58 -05:00
parent d2637471be
commit aa595b12ba

View file

@ -18,6 +18,7 @@ public class PersonTest {
@Test
public void testSetAndGetFirstName() {
personObj.setFirstName("Johnny");
assertEquals("Johnny", personObj.getFirstName());
}
// Testing the DAO of Person class by verifying the setter and getter of FirstName