From 735921cd6ffc5b2b42752154cd42cdfb0fc549e9 Mon Sep 17 00:00:00 2001 From: Mike Jensen Date: Fri, 3 Jan 2014 11:22:33 -0700 Subject: [PATCH] Renamed these tests to a shorter name so the test output still looks clean --- ...{AtomicIntegerConcurrentTest.java => AtomicIntegerTest.java} | 2 +- test/{AtomicLongConcurrentTest.java => AtomicLongTest.java} | 2 +- ...micReferenceConcurrentTest.java => AtomicReferenceTest.java} | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename test/{AtomicIntegerConcurrentTest.java => AtomicIntegerTest.java} (98%) rename test/{AtomicLongConcurrentTest.java => AtomicLongTest.java} (98%) rename test/{AtomicReferenceConcurrentTest.java => AtomicReferenceTest.java} (97%) diff --git a/test/AtomicIntegerConcurrentTest.java b/test/AtomicIntegerTest.java similarity index 98% rename from test/AtomicIntegerConcurrentTest.java rename to test/AtomicIntegerTest.java index 3056bf942a..72da50d446 100644 --- a/test/AtomicIntegerConcurrentTest.java +++ b/test/AtomicIntegerTest.java @@ -1,6 +1,6 @@ import java.util.concurrent.atomic.AtomicInteger; -public class AtomicIntegerConcurrentTest { +public class AtomicIntegerTest { private static void runTest(final boolean increment, final int threadCount, final int iterationsPerThread) { diff --git a/test/AtomicLongConcurrentTest.java b/test/AtomicLongTest.java similarity index 98% rename from test/AtomicLongConcurrentTest.java rename to test/AtomicLongTest.java index f76e15ce82..cb441f4295 100644 --- a/test/AtomicLongConcurrentTest.java +++ b/test/AtomicLongTest.java @@ -1,6 +1,6 @@ import java.util.concurrent.atomic.AtomicLong; -public class AtomicLongConcurrentTest { +public class AtomicLongTest { private static void runTest(final boolean increment, final int threadCount, final int iterationsPerThread) { diff --git a/test/AtomicReferenceConcurrentTest.java b/test/AtomicReferenceTest.java similarity index 97% rename from test/AtomicReferenceConcurrentTest.java rename to test/AtomicReferenceTest.java index 1c0b15058f..8ed2b561fd 100644 --- a/test/AtomicReferenceConcurrentTest.java +++ b/test/AtomicReferenceTest.java @@ -1,7 +1,7 @@ import java.util.concurrent.atomic.AtomicInteger; import java.util.concurrent.atomic.AtomicReference; -public class AtomicReferenceConcurrentTest { +public class AtomicReferenceTest { private static void runTest(final int threadCount, final int iterationsPerThread) { // we assume a 1ms delay per thread to try to get them all to start at the same time