From 62ca74121fc5294c143c19ead2dfbb9eff82b150 Mon Sep 17 00:00:00 2001 From: eugenp Date: Tue, 25 Oct 2016 11:18:24 +0300 Subject: [PATCH] tuning tests --- ...eLongRunningUnitTest.java => CompletableFutureUnitTest.java} | 2 +- .../{ScreenshotUnitTest.java => ScreenshotIntegrationTest.java} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename core-java/src/test/java/com/baeldung/completablefuture/{CompletableFutureLongRunningUnitTest.java => CompletableFutureUnitTest.java} (99%) rename core-java/src/test/java/com/baeldung/printscreen/{ScreenshotUnitTest.java => ScreenshotIntegrationTest.java} (92%) diff --git a/core-java/src/test/java/com/baeldung/completablefuture/CompletableFutureLongRunningUnitTest.java b/core-java/src/test/java/com/baeldung/completablefuture/CompletableFutureUnitTest.java similarity index 99% rename from core-java/src/test/java/com/baeldung/completablefuture/CompletableFutureLongRunningUnitTest.java rename to core-java/src/test/java/com/baeldung/completablefuture/CompletableFutureUnitTest.java index 2500bf590a..df12c3d79e 100644 --- a/core-java/src/test/java/com/baeldung/completablefuture/CompletableFutureLongRunningUnitTest.java +++ b/core-java/src/test/java/com/baeldung/completablefuture/CompletableFutureUnitTest.java @@ -13,7 +13,7 @@ import java.util.stream.Stream; import org.junit.Test; -public class CompletableFutureLongRunningUnitTest { +public class CompletableFutureUnitTest { @Test public void whenRunningCompletableFutureAsynchronously_thenGetMethodWaitsForResult() throws InterruptedException, ExecutionException { diff --git a/core-java/src/test/java/com/baeldung/printscreen/ScreenshotUnitTest.java b/core-java/src/test/java/com/baeldung/printscreen/ScreenshotIntegrationTest.java similarity index 92% rename from core-java/src/test/java/com/baeldung/printscreen/ScreenshotUnitTest.java rename to core-java/src/test/java/com/baeldung/printscreen/ScreenshotIntegrationTest.java index 650abc301a..13609b6977 100644 --- a/core-java/src/test/java/com/baeldung/printscreen/ScreenshotUnitTest.java +++ b/core-java/src/test/java/com/baeldung/printscreen/ScreenshotIntegrationTest.java @@ -7,7 +7,7 @@ import java.io.File; import static org.junit.Assert.assertTrue; -public class ScreenshotUnitTest { +public class ScreenshotIntegrationTest { private Screenshot screenshot = new Screenshot("Screenshot.jpg"); private File file = new File("Screenshot.jpg");