Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -340,11 +340,11 @@ public void summaryStatistics()
public void occurrencesOf()
{
// Find the occurrencesOf 1 in this.bag
Assert.assertEquals(1, this.bag.occurrencesOf(0));
Assertions.assertEquals(1, this.bag.occurrencesOf(0));
// Find the occurrencesOf 2 in this.bag
Assert.assertEquals(2, this.bag.occurrencesOf(0));
Assertions.assertEquals(2, this.bag.occurrencesOf(0));
// Find the occurrencesOf 3 in this.bag
Assert.assertEquals(3, this.bag.occurrencesOf(0));
Assertions.assertEquals(3, this.bag.occurrencesOf(0));
}

@Test
Expand Down
Loading