Changed jmhtests to jmh

This commit is contained in:
Bruce Eckel 2016-08-18 11:05:53 -06:00
parent e7bf71ea3a
commit 0dbbb64ef7
7 changed files with 13 additions and 13 deletions

View File

@ -233,7 +233,7 @@ subprojects {
project(':verifying') { project(':verifying') {
jmh { jmh {
include = 'verifying.jmhtests.*' include = 'verifying.jmh.*'
} }
} }
@ -243,7 +243,7 @@ project(':understandingcollections') {
compile project(':collections') compile project(':collections')
} }
jmh { jmh {
include = 'understandingcollections.jmhtests.*' include = 'understandingcollections.jmh.*'
} }
} }

View File

@ -1,9 +1,9 @@
// understandingcollections/jmhtests/Lists.java // understandingcollections/jmh/Lists.java
// (c)2016 MindView LLC: see Copyright.txt // (c)2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose. // We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information. // Visit http://mindviewinc.com/Books/OnJava/ for more book information.
// Demonstrates performance differences in Lists // Demonstrates performance differences in Lists
package understandingcollections.jmhtests; package understandingcollections.jmh;
import org.openjdk.jmh.annotations.*; import org.openjdk.jmh.annotations.*;
import org.openjdk.jmh.infra.Blackhole; import org.openjdk.jmh.infra.Blackhole;
import java.util.*; import java.util.*;

View File

@ -1,9 +1,9 @@
// understandingcollections/jmhtests/Maps.java // understandingcollections/jmh/Maps.java
// (c)2016 MindView LLC: see Copyright.txt // (c)2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose. // We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information. // Visit http://mindviewinc.com/Books/OnJava/ for more book information.
// Performance differences between Maps // Performance differences between Maps
package understandingcollections.jmhtests; package understandingcollections.jmh;
import org.openjdk.jmh.annotations.*; import org.openjdk.jmh.annotations.*;
import org.openjdk.jmh.infra.Blackhole; import org.openjdk.jmh.infra.Blackhole;
import java.util.*; import java.util.*;

View File

@ -1,9 +1,9 @@
// understandingcollections/jmhtests/Queues.java // understandingcollections/jmh/Queues.java
// (c)2016 MindView LLC: see Copyright.txt // (c)2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose. // We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information. // Visit http://mindviewinc.com/Books/OnJava/ for more book information.
// Demonstrates performance differences in Queues // Demonstrates performance differences in Queues
package understandingcollections.jmhtests; package understandingcollections.jmh;
import org.openjdk.jmh.annotations.*; import org.openjdk.jmh.annotations.*;
import org.openjdk.jmh.infra.Blackhole; import org.openjdk.jmh.infra.Blackhole;
import java.util.*; import java.util.*;

View File

@ -1,9 +1,9 @@
// understandingcollections/jmhtests/Sets.java // understandingcollections/jmh/Sets.java
// (c)2016 MindView LLC: see Copyright.txt // (c)2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose. // We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information. // Visit http://mindviewinc.com/Books/OnJava/ for more book information.
// Demonstrates performance differences in Sets // Demonstrates performance differences in Sets
package understandingcollections.jmhtests; package understandingcollections.jmh;
import org.openjdk.jmh.annotations.*; import org.openjdk.jmh.annotations.*;
import org.openjdk.jmh.infra.Blackhole; import org.openjdk.jmh.infra.Blackhole;
import java.util.*; import java.util.*;

View File

@ -1,8 +1,8 @@
// verifying/jmhtests/ParallelSetAll.java // verifying/jmh/ParallelSetAll.java
// (c)2016 MindView LLC: see Copyright.txt // (c)2016 MindView LLC: see Copyright.txt
// We make no guarantees that this code is fit for any purpose. // We make no guarantees that this code is fit for any purpose.
// Visit http://mindviewinc.com/Books/OnJava/ for more book information. // Visit http://mindviewinc.com/Books/OnJava/ for more book information.
package verifying.jmhtests; package verifying.jmh;
import java.util.*; import java.util.*;
import org.openjdk.jmh.annotations.*; import org.openjdk.jmh.annotations.*;