This page of ScalaTest.org!is brought to you by: |
ScalaTest User Guide Getting started Selecting testing styles Defining base classes Writing your first test Using assertions Tagging your tests Running your tests Sharing fixtures Sharing tests Using matchers Testing with mock objects Property-based testing Using Selenium Other goodies Philosophy and design Migrating to 2.0 |
This user guide will help you get rolling quickly with ScalaTest. First a brief orientation:
To include ScalaTest in your sbt project, simply add this line: libraryDependencies += "org.scalatest" % "scalatest_2.11" % "2.2.4" % "test" To include ScalaTest in your Maven project, use: <dependency> <groupId>org.scalatest</groupId> <artifactId>scalatest_2.10</artifactId> <version>2.2.4</version> <scope>test</scope> </dependency> For other ways to include ScalaTest in your project, see Running your tests. Using ScalaTest on your project is as easy as 1, 2, 3: |
ScalaTest is brought to you by Bill Venners, with
contributions from several other folks. It is sponsored by
Artima, Inc.
ScalaTest is free, open-source software
released under the Apache
2.0 license.
Copyright © 2009-2013 Artima, Inc. All Rights Reserved.