/** Intercept test case invocation and delegate it to a remote server. */
 public void runBare() throws Throwable {
   if (shouldRunTestOnServer()) {
     runBareClient();
   } else {
     super.runBare();
   }
 }
 public void runBareServer() throws Throwable {
   setIsOnServer(true);
   super.runBare();
 }