diff --git a/artemis-journal/src/test/java/org/apache/activemq/artemis/core/journal/impl/JournalTransactionForget.java b/artemis-journal/src/test/java/org/apache/activemq/artemis/core/journal/impl/JournalTransactionForgetTest.java similarity index 96% rename from artemis-journal/src/test/java/org/apache/activemq/artemis/core/journal/impl/JournalTransactionForget.java rename to artemis-journal/src/test/java/org/apache/activemq/artemis/core/journal/impl/JournalTransactionForgetTest.java index ff0aba1c6e..d1a91e571d 100644 --- a/artemis-journal/src/test/java/org/apache/activemq/artemis/core/journal/impl/JournalTransactionForget.java +++ b/artemis-journal/src/test/java/org/apache/activemq/artemis/core/journal/impl/JournalTransactionForgetTest.java @@ -20,7 +20,7 @@ package org.apache.activemq.artemis.core.journal.impl; import org.junit.Test; import org.mockito.Mockito; -public class JournalTransactionForget { +public class JournalTransactionForgetTest { @Test public void testForgetTX() { JournalTransaction transaction = new JournalTransaction(1, Mockito.mock(JournalRecordProvider.class)); diff --git a/artemis-journal/src/test/java/org/apache/activemq/artemis/core/journal/impl/VerifyUpdateFactorSystemProperty.java b/artemis-journal/src/test/java/org/apache/activemq/artemis/core/journal/impl/VerifyUpdateFactorSystemPropertyTest.java similarity index 88% rename from artemis-journal/src/test/java/org/apache/activemq/artemis/core/journal/impl/VerifyUpdateFactorSystemProperty.java rename to artemis-journal/src/test/java/org/apache/activemq/artemis/core/journal/impl/VerifyUpdateFactorSystemPropertyTest.java index 1972be35ae..eae38b0bec 100644 --- a/artemis-journal/src/test/java/org/apache/activemq/artemis/core/journal/impl/VerifyUpdateFactorSystemProperty.java +++ b/artemis-journal/src/test/java/org/apache/activemq/artemis/core/journal/impl/VerifyUpdateFactorSystemPropertyTest.java @@ -20,7 +20,7 @@ import org.apache.activemq.artemis.utils.SpawnedVMSupport; import org.junit.Assert; import org.junit.Test; -public class VerifyUpdateFactorSystemProperty { +public class VerifyUpdateFactorSystemPropertyTest { public static void main(String[] arg) { @@ -35,7 +35,7 @@ public class VerifyUpdateFactorSystemProperty { @Test public void testValidateUpdateRecordProperty() throws Exception { - Process process = SpawnedVMSupport.spawnVM(VerifyUpdateFactorSystemProperty.class.getName(), new String[]{"-D" + JournalImpl.class.getName() + ".UPDATE_FACTOR=33.0"}, new String[]{}); + Process process = SpawnedVMSupport.spawnVM(VerifyUpdateFactorSystemPropertyTest.class.getName(), new String[]{"-D" + JournalImpl.class.getName() + ".UPDATE_FACTOR=33.0"}, new String[]{}); Assert.assertEquals(0, process.waitFor()); }