Trove test refactor

This commit is contained in:
mherbaghinyan 2019-02-15 12:25:35 +04:00
parent 12b19733af
commit 04f9b44a63
1 changed files with 3 additions and 3 deletions

View File

@ -31,7 +31,7 @@ public class PrimitivesListPerformance {
} }
@Benchmark @Benchmark
public boolean addTIntList() { public boolean addTroveIntList() {
return tList.add(getValue); return tList.add(getValue);
} }
@ -51,7 +51,7 @@ public class PrimitivesListPerformance {
} }
@Benchmark @Benchmark
public int getTIntList() { public int getTroveIntList() {
return tList.get(getValue); return tList.get(getValue);
} }
@ -71,7 +71,7 @@ public class PrimitivesListPerformance {
} }
@Benchmark @Benchmark
public boolean containsTIntList() { public boolean containsTroveIntList() {
return tList.contains(getValue); return tList.contains(getValue);
} }