]> source.dussan.org Git - sonarqube.git/commitdiff
Minor improvement in ServerTester
authorSimon Brandhof <simon.brandhof@sonarsource.com>
Sun, 30 Nov 2014 19:21:12 +0000 (20:21 +0100)
committerSimon Brandhof <simon.brandhof@sonarsource.com>
Sun, 30 Nov 2014 19:21:12 +0000 (20:21 +0100)
server/sonar-server/src/test/java/org/sonar/server/tester/ServerTester.java

index 779b9f943824fdaa7c0adfa251b83707bda93729..8514dcfa3ce8403ffd70226529da39622e945c9e 100644 (file)
@@ -121,11 +121,11 @@ public class ServerTester extends ExternalResource {
     try {
       if (platform != null) {
         platform.doStop();
+        platform = null;
       }
     } catch (Exception e) {
       LOG.error("Fail to stop web server", e);
     }
-    platform = null;
     FileUtils.deleteQuietly(homeDir);
   }
 
@@ -194,7 +194,7 @@ public class ServerTester extends ExternalResource {
   }
 
   private void checkStarted() {
-    if (!platform.isStarted()) {
+    if (platform == null || !platform.isStarted()) {
       throw new IllegalStateException("Not started");
     }
   }