TestNG.
TestNG is a testing framework..
Here is the list of declaration for testng. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.8.7</version> </dependency>
If you think this Maven repository POM file listing for testng is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:Apache License, Version 2.0
URL: http://apache.org/licenses/LICENSE-2.0.
The testng-6.8.7 has 6 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.
Category | Artifact | Depended By Count |
---|---|---|
Build | ant 1.7.0 Apache Ant | 227 |
JUnit | junit 4.10 JUnit is a regression testing framework written by Erich Gamma and Kent Beck. It is used by the developer who implements unit tests in Java. | 1957 |
Console | jcommander 1.27 A Java framework to parse command line options with annotations. | 21 |
YAML | snakeyaml 1.12 YAML 1.1 parser and emitter for Java | 16 |
The following table lists the most popular artifacts which are depending on testng-6.8.7. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Inversion of Control | guiceyloops 0.28 GuiceyLoops: Guice EE testing support to Guicey-fruit | 6 |
Scala | scalatest_2.11.0-RC4 2.1.3 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 5 |
Scala | scalatest_2.10 2.1.4 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 22 |
Scala | scalatest_2.10 2.1.2 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 20 |
Scala | scalatest_2.10 2.1.0 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 21 |
Scala | scalatest_2.10 2.1.3 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 167 |
Scala | scalatest_2.10 2.1.5 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 59 |
Servlet | simple-session-filter 0.4 A simple servlet filter for implementing custom session management | 23 |
Scala | scalatest_2.11 2.1.3 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 147 |
GWT | gwt-webpoller 0.8 GWT WebPoller Library | 22 |
Scala | scalatest_2.10 2.1.6 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 70 |
Spring | spring-test 3.2.8.RELEASE Spring TestContext Framework | 37 |
Scala | scalatest_2.11 2.1.7 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 5 |
Scala | scalatest_2.11 2.1.5 ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. | 39 |
GWT | gwt-property-source 0.2 GWT Property Source Library: Programmatic access to compile time configuration values | 31 |
Servlet | simple-session-filter 0.2 A simple servlet filter for implementing custom session management | 13 |
Spring | spring-test 4.0.2.RELEASE Spring TestContext Framework | 15 |
The following plugins are used in the testng-6.8.7.jar
The following packages are defined in the testng-6.8.7.jar
com.beust.testng org.testng org.testng.annotations org.testng.asserts org.testng.collections org.testng.internal org.testng.internal.annotations org.testng.internal.collections org.testng.internal.invokers org.testng.internal.junit org.testng.internal.remote org.testng.internal.thread org.testng.internal.thread.graph org.testng.junit org.testng.log org.testng.log4testng org.testng.mustache org.testng.remote org.testng.remote.adapter org.testng.remote.strprotocol org.testng.reporters org.testng.reporters.jq org.testng.reporters.util org.testng.util org.testng.xml org.testng.xml.dom
Here is the content of the POM file.
<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"> <!-- Refer to the file ./build-with-maven for instruction on how to use this pom.xml --> <modelVersion>4.0.0</modelVersion> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <packaging>jar</packaging> <name>TestNG</name> <version>6.8.7</version> <description>TestNG is a testing framework.</description> <url>http://testng.org</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git@github.com:cbeust/testng.git</connection> <developerConnection>scm:git:git@github.com:cbeust/testng.git</developerConnection> <url>git@github.com:cbeust/testng.git</url> </scm> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>3</version> </parent> <profiles> <profile> <!-- When activated, download dependencies from the snapshot repo --> <id>snapshot</id> <repositories> <repository> <id>snapshot-repository</id> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </repository> </repositories> <dependencies> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.7.0</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> </dependency> <dependency> <groupId>org.beanshell</groupId> <artifactId>bsh</artifactId> <version>2.0b4</version> <!-- <scope>provided</scope> --> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.beust</groupId> <artifactId>jcommander</artifactId> <version>1.5</version> </dependency> </dependencies> </profile> </profiles> <dependencies> <dependency> <groupId>org.apache.ant</groupId> <artifactId>ant</artifactId> <version>1.7.0</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> </dependency> <dependency> <groupId>org.beanshell</groupId> <artifactId>bsh</artifactId> <version>2.0b4</version> <!-- <scope>provided</scope> --> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>2.0</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.beust</groupId> <artifactId>jcommander</artifactId> <version>1.27</version> </dependency> <dependency> <groupId>org.yaml</groupId> <artifactId>snakeyaml</artifactId> <version>1.12</version> </dependency> </dependencies> <build> <plugins> <!-- Bundle sources --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <!-- Compilation --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.1</version> <configuration> <source>1.5</source> </configuration> </plugin> <!-- Resource handling --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-resources-plugin</artifactId> <version>2.4.1</version> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> <!-- OSGi manifest creation --> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>2.1.0</version> <executions> <execution> <id>bundle-manifest</id> <phase>process-classes</phase> <goals> <goal>manifest</goal> </goals> <configuration> <instructions> <_versionpolicy>$(@)</_versionpolicy> <Import-Package> bsh.*;version="[2.0.0,3.0.0)";resolution:=optional, com.beust.jcommander.*;version="[1.7.0,3.0.0)";resolution:=optional, com.google.inject.*;version="[1.2,1.3)";resolution:=optional, junit.framework;version="[3.8.1, 5.0.0)";resolution:=optional, org.apache.tools.ant.*;version="[1.7.0, 2.0.0)";resolution:=optional, org.yaml.*;version="[1.6,2.0)";resolution:=optional, !com.sun.*, * </Import-Package> </instructions> </configuration> </execution> </executions> </plugin> <!-- Add OSGi manifest in JAR --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.1</version> <configuration> <archive> <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile> </archive> </configuration> </plugin> <!-- Generating Javadoc --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.7</version> <configuration> <excludePackageNames>*.internal</excludePackageNames> </configuration> </plugin> <!-- Tests (skipping) --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.14.1</version> <configuration> <skipTests>true</skipTests> </configuration> </plugin> <!-- Signing with gpg --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>