JsUnit test runner.
JsUnit is a Unit Testing framework for client-side (in-browser) JavaScript. It is essentially a port of JUnit to JavaScript. Also included is a platform for automating the execution of tests on multiple browsers and mutiple machines running different OSs. Its development began in January 2001..
Here is the list of declaration for jsunit-testRunner. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>net.jsunit</groupId> <artifactId>jsunit-testRunner</artifactId> <version>2.1.4</version> </dependency>
If you think this Maven repository POM file listing for jsunit-testRunner is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Mozilla Public License 1.1
URL: http://www.mozilla.org/MPL/MPL-1.1.htmlName:GNU Public License 2.0
URL: http://www.gnu.org/licenses/licenses.html#GPLName:GNU Lesser Public License 2.1
URL: http://www.gnu.org/licenses/licenses.html#LGPL.
Here is the content of the POM file.
<?xml version="1.0"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <groupId>net.jsunit</groupId> <artifactId>jsunit-testRunner</artifactId> <packaging>javascript</packaging> <name>JsUnit test runner</name> <version>2.1.4</version> <url>http://www.jsunit.net</url> <description> JsUnit is a Unit Testing framework for client-side (in-browser) JavaScript. It is essentially a port of JUnit to JavaScript. Also included is a platform for automating the execution of tests on multiple browsers and mutiple machines running different OSs. Its development began in January 2001. </description> <licenses> <license> <name>Mozilla Public License 1.1</name> <url>http://www.mozilla.org/MPL/MPL-1.1.html</url> <distribution>repo</distribution> </license> <license> <name>GNU Public License 2.0</name> <url>http://www.gnu.org/licenses/licenses.html#GPL</url> <distribution>repo</distribution> </license> <license> <name>GNU Lesser Public License 2.1</name> <url>http://www.gnu.org/licenses/licenses.html#LGPL</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection> scm:svn:https://jsunit.svn.sourceforge.net/svnroot/jsunit/tags/v2_1_4/jsunit/ </connection> </scm> <mailingLists> <mailingList> <name>jsunit</name> <archive>http://tech.groups.yahoo.com/group/jsunit/messages</archive> <post>http://tech.groups.yahoo.com/group/jsunit/post</post> <subscribe>http://tech.groups.yahoo.com/group/jsunit/join</subscribe> <unsubscribe>http://tech.groups.yahoo.com/group/jsunit/join</unsubscribe> </mailingList> </mailingLists> <dependencies> <dependency> <groupId>net.jsunit</groupId> <artifactId>jsunit</artifactId> <version>2.1.4</version> </dependency> </dependencies> </project>