Skip to content

Commit

Permalink
Revert "Add missing testcases to person"
Browse files Browse the repository at this point in the history
This reverts commit 2fac3bc.
  • Loading branch information
ReflectiveObsidian committed Mar 11, 2024
1 parent 2fac3bc commit 5b19048
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions src/test/java/seedu/address/model/person/PersonTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -96,21 +96,4 @@ public void toStringMethod() {
+ ", email=" + ALICE.getEmail() + ", address=" + ALICE.getAddress() + ", tags=" + ALICE.getTags() + "}";
assertEquals(expected, ALICE.toString());
}
@Test
public void getName() {
assertEquals(VALID_NAME_BOB, BOB.getName().toString());
}
@Test
public void getPhone() {
assertEquals(VALID_PHONE_BOB, BOB.getPhone().toString());
}
@Test
public void getEmail() {
assertEquals(VALID_EMAIL_BOB, BOB.getEmail().toString());
}
@Test
public void getAddress() {
assertEquals(VALID_ADDRESS_BOB, BOB.getAddress().toString());
}

}

0 comments on commit 5b19048

Please sign in to comment.