ScalaTest.
ScalaTest is a free, open-source testing toolkit for Scala and Java programmers..
Here is the list of declaration for scalatest_2.10. 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_2.10</artifactId> <version>1.9</version> </dependency>
If you think this Maven repository POM file listing for scalatest_2.10 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 scalatest_2.10-1.9 has 15 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 |
---|---|---|
Scala | scala-library 2.10.0 Standard library for the Scala Programming Language | 435 |
Parser | scala-compiler 2.10.0 Compiler for the Scala Programming Language | 41 |
Scala | scala-actors 2.10.0 Deprecated Actors Library for Scala | 14 |
Parser | scala-reflect 2.10.0 Compiler for the Scala Programming Language | 31 |
Parser | stringtemplate 3.2 StringTemplate is a java template engine for generating source code, web pages, emails, or any other formatted text output. StringTemplate is particularly good at multi-targeted code generators, multiple site skins, and internationalization/localization. It evolved over years of effort developin... | 87 |
Testing Mock | easymockclassextension 3.1 The EasyMock Class Extension allows to generate Mock Objects for classes | 135 |
Testing Mock | mockito-all 1.9.0 Mock objects library for java | 257 |
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 |
The following packages are defined in the scalatest_2.10-1.9.jar
org.scalatest org.scalatest.concurrent org.scalatest.events org.scalatest.exceptions org.scalatest.fixture org.scalatest.junit org.scalatest.matchers org.scalatest.mock org.scalatest.path org.scalatest.prop org.scalatest.testng org.scalatest.time 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> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <properties> <scala.version>2.10.0</scala.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <groupId>org.scalatest</groupId> <artifactId>scalatest_2.10</artifactId> <version>1.9</version> <packaging>jar</packaging> <name>ScalaTest</name> <description> ScalaTest is a free, open-source testing toolkit for Scala and Java programmers. </description> <url>http://www.scalatest.org</url> <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> <scm> <url>http://code.google.com/p/scalatest/source/browse/</url> <connection>scm:svn:http://scalatest.googlecode.com/svn/trunk/</connection> <developerConnection> scm:svn:http://scalatest.googlecode.com/svn/trunk/ </developerConnection> </scm> <inceptionYear>2009</inceptionYear> <dependencies> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-library</artifactId> <version>2.10.0</version> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-compiler</artifactId> <version>2.10.0</version> <optional>true</optional> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-actors</artifactId> <version>2.10.0</version> </dependency> <dependency> <groupId>org.scala-lang</groupId> <artifactId>scala-reflect</artifactId> <version>2.10.0</version> </dependency> <dependency> <groupId>org.scala-tools.testing</groupId> <artifactId>test-interface</artifactId> <version>0.5</version> <optional>true</optional> </dependency> <dependency> <groupId>org.antlr</groupId> <artifactId>stringtemplate</artifactId> <version>3.2</version> <optional>true</optional> </dependency> <dependency> <groupId>org.scalacheck</groupId> <artifactId>scalacheck_2.10.0</artifactId> <version>1.10.0</version> <optional>true</optional> </dependency> <dependency> <groupId>org.easymock</groupId> <artifactId>easymockclassextension</artifactId> <version>3.1</version> <optional>true</optional> </dependency> <dependency> <groupId>org.jmock</groupId> <artifactId>jmock-legacy</artifactId> <version>2.5.1</version> <optional>true</optional> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-all</artifactId> <version>1.9.0</version> <optional>true</optional> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.3.1</version> <optional>true</optional> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <version>3.0</version> <optional>true</optional> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <optional>true</optional> </dependency> <dependency> <groupId>net.sourceforge.cobertura</groupId> <artifactId>cobertura</artifactId> <version>1.9.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-io</artifactId> <version>1.3.2</version> <scope>test</scope> </dependency> </dependencies> </project>