Skip to content

Commit

Permalink
Trove test refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
MherBaghinyan committed Feb 15, 2019
1 parent 12b1973 commit 04f9b44
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public boolean addArrayList() {
}

@Benchmark
public boolean addTIntList() {
public boolean addTroveIntList() {
return tList.add(getValue);
}

Expand All @@ -51,7 +51,7 @@ public int getArrayList() {
}

@Benchmark
public int getTIntList() {
public int getTroveIntList() {
return tList.get(getValue);
}

Expand All @@ -71,7 +71,7 @@ public boolean containsArrayList() {
}

@Benchmark
public boolean containsTIntList() {
public boolean containsTroveIntList() {
return tList.contains(getValue);
}

Expand Down

0 comments on commit 04f9b44

Please sign in to comment.