Renamed these tests to a shorter name so the test output still looks clean

This commit is contained in:
Mike Jensen 2014-01-03 11:22:33 -07:00
parent f4f4b8a26b
commit 735921cd6f
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicInteger;
public class AtomicIntegerConcurrentTest { public class AtomicIntegerTest {
private static void runTest(final boolean increment, private static void runTest(final boolean increment,
final int threadCount, final int threadCount,
final int iterationsPerThread) { final int iterationsPerThread) {

View File

@ -1,6 +1,6 @@
import java.util.concurrent.atomic.AtomicLong; import java.util.concurrent.atomic.AtomicLong;
public class AtomicLongConcurrentTest { public class AtomicLongTest {
private static void runTest(final boolean increment, private static void runTest(final boolean increment,
final int threadCount, final int threadCount,
final int iterationsPerThread) { final int iterationsPerThread) {

View File

@ -1,7 +1,7 @@
import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicReference; import java.util.concurrent.atomic.AtomicReference;
public class AtomicReferenceConcurrentTest { public class AtomicReferenceTest {
private static void runTest(final int threadCount, private static void runTest(final int threadCount,
final int iterationsPerThread) { final int iterationsPerThread) {
// we assume a 1ms delay per thread to try to get them all to start at the same time // we assume a 1ms delay per thread to try to get them all to start at the same time