vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/Bck2BrwsrCase.java
changeset 384 269d99fd6421
parent 383 88ed1f51eb22
child 393 bedc3b93a040
     1.1 --- a/vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/Bck2BrwsrCase.java	Tue Dec 25 15:31:58 2012 +0100
     1.2 +++ b/vmtest/src/main/java/org/apidesign/bck2brwsr/vmtest/impl/Bck2BrwsrCase.java	Tue Dec 25 17:46:21 2012 +0100
     1.3 @@ -21,6 +21,7 @@
     1.4  import java.util.Map;
     1.5  import java.util.WeakHashMap;
     1.6  import javax.script.Invocable;
     1.7 +import org.apidesign.bck2brwsr.launcher.Launcher;
     1.8  import org.apidesign.bck2brwsr.launcher.MethodInvocation;
     1.9  import org.testng.ITest;
    1.10  import org.testng.annotations.Test;
    1.11 @@ -31,7 +32,7 @@
    1.12   */
    1.13  public final class Bck2BrwsrCase implements ITest {
    1.14      private final Method m;
    1.15 -    private final LaunchSetup l;
    1.16 +    private final Launcher l;
    1.17      private final String type;
    1.18      Object value;
    1.19      private Invocable code;
    1.20 @@ -39,7 +40,7 @@
    1.21      private static final Map<Class, Object[]> compiled = new WeakHashMap<>();
    1.22      private Object inst;
    1.23  
    1.24 -    Bck2BrwsrCase(Method m, String type, LaunchSetup l) {
    1.25 +    Bck2BrwsrCase(Method m, String type, Launcher l) {
    1.26          this.l = l;
    1.27          this.m = m;
    1.28          this.type = type;