public Statement apply()

in src/main/java/org/apache/sling/junit/remote/ide/SlingRemoteExecutionRule.java [46:56]


   public Statement apply(final Statement base, final FrameworkMethod method, Object target) {
       return new Statement() {
           @Override
           public void evaluate() throws Throwable {
               if (tryRemoteEvaluation(method)) {
                   return;
               }
               base.evaluate();
           }
       };
   }