ScalaTest.
ScalaTest is a free, open-source testing toolkit for Scala and Java programmers..
Here is the list of declaration for scalatest. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest</artifactId> <version>1.2</version> </dependency>
If you think this Maven repository POM file listing for scalatest is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:the Apache License, ASL Version 2.0
URL: http://www.apache.org/licenses/LICENSE-2.0.
The following table lists the most popular artifacts which are depending on scalatest-1.2. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Library | specs_2.9.0 1.6.8 specs is a Behaviour-Driven-Design framework | 18 |
Library | specs_2.8.1 1.6.8 specs is a Behaviour-Driven-Design framework | 27 |
Library | specs_2.8.1 1.6.7.2 specs is a Behaviour-Driven-Design framework | 13 |
Library | specs_2.9.0-1 1.6.8 specs is a Behaviour-Driven-Design framework | 36 |
Library | specs_2.8.1 1.6.7 specs is a Behaviour-Driven-Design framework | 31 |
The following packages are defined in the scalatest-1.2.jar
org.scalatest org.scalatest.concurrent org.scalatest.events org.scalatest.fixture org.scalatest.junit org.scalatest.matchers org.scalatest.mock org.scalatest.prop org.scalatest.testng org.scalatest.tools org.scalatest.verb
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"> <modelVersion>4.0.0</modelVersion> <groupId>org.scalatest</groupId> <artifactId>scalatest</artifactId> <version>1.2</version> <packaging>jar</packaging> <name>ScalaTest</name> <url>http://www.artima.com/scalatest/</url> <description>ScalaTest is a free, open-source testing toolkit for Scala and Java programmers.</description> <licenses> <license> <name>the Apache License, ASL Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <inceptionYear>2009</inceptionYear> <dependencies> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>2.8.0.RC6</version> <scope>provided</scope> </dependency> </dependencies> <distributionManagement> <repository> <id>scala-tools.org</id> <url> http://nexus.scala-tools.org/content/repositories/releases/</url> </repository> <snapshotRepository> <id>scala-tools.org</id> <url> http://nexus.scala-tools.org/content/repositories/snapshots/</url> <uniqueVersion>false</uniqueVersion> </snapshotRepository> </distributionManagement> </project>