|
Project Information
Members
Featured
Downloads
Wiki pages
|
By Combining a simple Jetty server and HTMLUnit, this library will allow you to integrate your qUnit test directly into a Java-based build with a simple jUnit test that runs your entire unit-test suite in less than 10 seconds. Quick Start:Once you have a standard qUnit test suite HTML file, just add a plain old jUnit test to your Java project that looks like this: public class QUnitDemoIntegration {
@Test
public void testQunitPage(){
QUnitTestDriver.run("path/to/qUnitTest.html");
}
}Get the JAR file here, and for integration with Nexus or Artifactory, the POM here. Additional examples are here. |