Skip to content

Commit

Permalink
Add test
Browse files Browse the repository at this point in the history
  • Loading branch information
nikele2001 committed Nov 14, 2023
1 parent 3e76108 commit ac8ca15
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -206,4 +206,10 @@ public void asUnmodifiableObservableList_modifyList_throwsUnsupportedOperationEx
public void toStringMethod() {
assertEquals(uniquePersonList.asUnmodifiableObservableList().toString(), uniquePersonList.toString());
}

@Test
public void equals() {
assertEquals(uniquePersonList, uniquePersonList);
assertFalse(uniquePersonList.equals(null));
}
}

0 comments on commit ac8ca15

Please sign in to comment.