Builder methods on VMTest now allow direct specification of the launcher to use
authorJaroslav Tulach <jaroslav.tulach@apidesign.org>
Sun, 28 Apr 2013 22:39:26 +0200
changeset 427e8267acd491
parent 41 ee455e48c3f0
child 43 2073237c83bf
Builder methods on VMTest now allow direct specification of the launcher to use
ko-fx/pom.xml
ko-fx/src/test/java/org/apidesign/html/kofx/KnockoutFXTest.java
     1.1 --- a/ko-fx/pom.xml	Fri Apr 26 16:23:15 2013 +0200
     1.2 +++ b/ko-fx/pom.xml	Sun Apr 28 22:39:26 2013 +0200
     1.3 @@ -46,5 +46,11 @@
     1.4        <version>${project.version}</version>
     1.5        <scope>test</scope>
     1.6      </dependency>
     1.7 +    <dependency>
     1.8 +      <groupId>org.apidesign.bck2brwsr</groupId>
     1.9 +      <artifactId>launcher.fx</artifactId>
    1.10 +      <version>0.7-SNAPSHOT</version>
    1.11 +      <scope>test</scope>
    1.12 +    </dependency>
    1.13    </dependencies>
    1.14  </project>
     2.1 --- a/ko-fx/src/test/java/org/apidesign/html/kofx/KnockoutFXTest.java	Fri Apr 26 16:23:15 2013 +0200
     2.2 +++ b/ko-fx/src/test/java/org/apidesign/html/kofx/KnockoutFXTest.java	Sun Apr 28 22:39:26 2013 +0200
     2.3 @@ -41,8 +41,7 @@
     2.4      }
     2.5  
     2.6      @Factory public static Object[] compatibilityTests() {
     2.7 -        System.setProperty("vmtest.brwsrs", "fx");
     2.8 -        return VMTest.create(testClasses());
     2.9 +        return VMTest.newTests().addClass(testClasses()).addLauncher("fxbrwsr").build();
    2.10      }
    2.11  
    2.12      @Override