Trove test refactor
This commit is contained in:
parent
12b19733af
commit
04f9b44a63
|
@ -31,7 +31,7 @@ public class PrimitivesListPerformance {
|
|||
}
|
||||
|
||||
@Benchmark
|
||||
public boolean addTIntList() {
|
||||
public boolean addTroveIntList() {
|
||||
return tList.add(getValue);
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ public class PrimitivesListPerformance {
|
|||
}
|
||||
|
||||
@Benchmark
|
||||
public int getTIntList() {
|
||||
public int getTroveIntList() {
|
||||
return tList.get(getValue);
|
||||
}
|
||||
|
||||
|
@ -71,7 +71,7 @@ public class PrimitivesListPerformance {
|
|||
}
|
||||
|
||||
@Benchmark
|
||||
public boolean containsTIntList() {
|
||||
public boolean containsTroveIntList() {
|
||||
return tList.contains(getValue);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue