Changed jmhtests to jmh
This commit is contained in:
parent
e7bf71ea3a
commit
0dbbb64ef7
@ -233,7 +233,7 @@ subprojects {
|
||||
|
||||
project(':verifying') {
|
||||
jmh {
|
||||
include = 'verifying.jmhtests.*'
|
||||
include = 'verifying.jmh.*'
|
||||
}
|
||||
}
|
||||
|
||||
@ -243,7 +243,7 @@ project(':understandingcollections') {
|
||||
compile project(':collections')
|
||||
}
|
||||
jmh {
|
||||
include = 'understandingcollections.jmhtests.*'
|
||||
include = 'understandingcollections.jmh.*'
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
// understandingcollections/jmhtests/Lists.java
|
||||
// understandingcollections/jmh/Lists.java
|
||||
// (c)2016 MindView LLC: see Copyright.txt
|
||||
// We make no guarantees that this code is fit for any purpose.
|
||||
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
||||
// Demonstrates performance differences in Lists
|
||||
package understandingcollections.jmhtests;
|
||||
package understandingcollections.jmh;
|
||||
import org.openjdk.jmh.annotations.*;
|
||||
import org.openjdk.jmh.infra.Blackhole;
|
||||
import java.util.*;
|
@ -1,9 +1,9 @@
|
||||
// understandingcollections/jmhtests/Maps.java
|
||||
// understandingcollections/jmh/Maps.java
|
||||
// (c)2016 MindView LLC: see Copyright.txt
|
||||
// We make no guarantees that this code is fit for any purpose.
|
||||
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
||||
// Performance differences between Maps
|
||||
package understandingcollections.jmhtests;
|
||||
package understandingcollections.jmh;
|
||||
import org.openjdk.jmh.annotations.*;
|
||||
import org.openjdk.jmh.infra.Blackhole;
|
||||
import java.util.*;
|
@ -1,9 +1,9 @@
|
||||
// understandingcollections/jmhtests/Queues.java
|
||||
// understandingcollections/jmh/Queues.java
|
||||
// (c)2016 MindView LLC: see Copyright.txt
|
||||
// We make no guarantees that this code is fit for any purpose.
|
||||
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
||||
// Demonstrates performance differences in Queues
|
||||
package understandingcollections.jmhtests;
|
||||
package understandingcollections.jmh;
|
||||
import org.openjdk.jmh.annotations.*;
|
||||
import org.openjdk.jmh.infra.Blackhole;
|
||||
import java.util.*;
|
@ -1,9 +1,9 @@
|
||||
// understandingcollections/jmhtests/Sets.java
|
||||
// understandingcollections/jmh/Sets.java
|
||||
// (c)2016 MindView LLC: see Copyright.txt
|
||||
// We make no guarantees that this code is fit for any purpose.
|
||||
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
||||
// Demonstrates performance differences in Sets
|
||||
package understandingcollections.jmhtests;
|
||||
package understandingcollections.jmh;
|
||||
import org.openjdk.jmh.annotations.*;
|
||||
import org.openjdk.jmh.infra.Blackhole;
|
||||
import java.util.*;
|
@ -1,8 +1,8 @@
|
||||
// verifying/jmhtests/ParallelSetAll.java
|
||||
// verifying/jmh/ParallelSetAll.java
|
||||
// (c)2016 MindView LLC: see Copyright.txt
|
||||
// We make no guarantees that this code is fit for any purpose.
|
||||
// Visit http://mindviewinc.com/Books/OnJava/ for more book information.
|
||||
package verifying.jmhtests;
|
||||
package verifying.jmh;
|
||||
import java.util.*;
|
||||
import org.openjdk.jmh.annotations.*;
|
||||
|
@ -9,4 +9,4 @@
|
||||
<root level="TRACE">
|
||||
<appender-ref ref="STDOUT" />
|
||||
</root>
|
||||
</configuration>
|
||||
</configuration>
|
||||
|
Loading…
x
Reference in New Issue
Block a user