Remove ClientTest#testRunsLocally test

As RAP is always runnnig from server, Client.getRunsLocally() function
has been removed.

Change-Id: I786c9986dc6ff2c075034574f44fcfc958ecc0ee
diff --git a/tests/org.eclipse.rap.rwt.jstest/js/org/eclipse/rwt/test/tests/ClientTest.js b/tests/org.eclipse.rap.rwt.jstest/js/org/eclipse/rwt/test/tests/ClientTest.js
index 408aed5..f0ba62f 100644
--- a/tests/org.eclipse.rap.rwt.jstest/js/org/eclipse/rwt/test/tests/ClientTest.js
+++ b/tests/org.eclipse.rap.rwt.jstest/js/org/eclipse/rwt/test/tests/ClientTest.js
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2011, 2015 EclipseSource and others.
+ * Copyright (c) 2011, 2017 EclipseSource and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -19,13 +19,6 @@
 
   members : {
 
-    testRunsLocally : function() {
-      var msg = "Always run tests from an http-server!";
-      assertFalse( msg, Client.getRunsLocally() );
-      // NOTE: If this fails, either getRunsLocally returns the wrong value
-      //       or, more likely, you started tests from the filesystem
-    },
-
     testEngine : function() {
       var engines = [ "gecko", "blink", "webkit", "trident" ];
       var currentEngine = Client.getEngine();