From 27a9d8a5260072229080cd742bc1c26e60b5c52f Mon Sep 17 00:00:00 2001 From: Rsl1122 Date: Sat, 13 Oct 2018 09:59:53 +0300 Subject: [PATCH] [Test] Renamed methods in WorldTimesTest --- .../djrapitops/plan/data/time/WorldTimesTest.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Plan/src/test/java/com/djrapitops/plan/data/time/WorldTimesTest.java b/Plan/src/test/java/com/djrapitops/plan/data/time/WorldTimesTest.java index d85dca4c4..74187b1fb 100644 --- a/Plan/src/test/java/com/djrapitops/plan/data/time/WorldTimesTest.java +++ b/Plan/src/test/java/com/djrapitops/plan/data/time/WorldTimesTest.java @@ -22,7 +22,7 @@ public class WorldTimesTest { private WorldTimes worldTimes = new WorldTimes(worldOne, gms[0], time); @Test - public void testWorldChange() { + public void stateAffectedByWorldChange() { long changeTime = time + 1000L; worldTimes.updateState(worldTwo, gms[0], changeTime); @@ -31,7 +31,7 @@ public class WorldTimesTest { } @Test - public void testGMChange() { + public void stateAffectedByGamemodeChange() { long changeTime = time + 1000L; worldTimes.updateState(worldOne, gms[0], changeTime); @@ -40,7 +40,7 @@ public class WorldTimesTest { } @Test - public void testBothTwiceChange() { + public void stateAffectedByTwoChangesAtOnce() { long changeTime = time + 1000L; long changeTime2 = changeTime + 1000L; @@ -57,7 +57,7 @@ public class WorldTimesTest { } @Test - public void testLotOfChangesWorldTime() { + public void stateAffectedByManyWorldChanges() { long amount = 1000L; String[] worlds = new String[]{worldOne, worldTwo}; @@ -95,7 +95,7 @@ public class WorldTimesTest { } @Test - public void testGMTrackingSingleWorld() { + public void gamemodeTrackingWorksForASingleWorld() { long changeTime = time + 1000L; long changeTime2 = changeTime + 1000L; @@ -114,7 +114,7 @@ public class WorldTimesTest { } @Test - public void testGMTrackingTwoWorlds() { + public void gamemodeTrackingWorksForTwoWorlds() { long changeTime = time + 1000L; long changeTime2 = time + 2000L;