Just Released - The ScalaTest Selenium DSL, for testing web apps, and the ScalaTest Eclipse Plugin, the first plugin in the Scala IDE ecosysytem! Also check out an example of ScalaTest's new HTML report.
import collection.mutable.Stack import org.scalatest._ class StackSpec extends FlatSpec with ShouldMatchers { "A Stack" should "pop values in last-in-first-out order" in { val stack = new Stack[Int] stack.push(1) stack.push(2) stack.pop() should equal (2) stack.pop() should equal (1) } it should "throw NoSuchElementException if an empty stack is popped" in { val emptyStack = new Stack[String] evaluating { emptyStack.pop() } should produce [NoSuchElementException] } }
With ScalaTest, you can test either Scala or Java code. By offering deep integration with tools such as JUnit, TestNG, Ant, Maven, sbt, ScalaCheck, JMock, EasyMock, Mockito, ScalaMock, Selenium, Eclipse, NetBeans, and IntelliJ, ScalaTest makes it easy to take your testing to a higher, more productive level in new or existing Scala or Java projects.
Like the Scala language on which it is built, ScalaTest is designed to grow with the demands of its users: You can easily extend and compose ScalaTest's core components to address just about any special requirements you may have. As a result, ScalaTest can scale to projects of all sizes, from an individual exploring a new idea to large teams collaborating on mission-critical software.
One way ScalaTest scales down is that despite its rich feature set, ScalaTest is easy to get into. Building on what you already know from experience with other test frameworks, you can become productive with ScalaTest in about ten minutes.
To maximize your productivity, ScalaTest uses its own extension points to support several styles of testing out of the box.
You can select whatever style best fits your team's experience and culture. For instance, the above example
uses FlatSpec, a good choice for teams wishing to move from XUnit to BDD. When
you run it, you get an informal specification of the software being tested:
$ scala -cp scalatest_2.9.0-2.0.M5b.jar org.scalatest.run StackSpec Run starting. Expected test count is: 2 StackSpec: A Stack - should pop values in last-in-first-out order - should throw NoSuchElementException if an empty stack is popped Run completed in 96 milliseconds. Total number of tests run: 2 Suites: completed 1, aborted 0 Tests: succeeded 2, failed 0, ignored 0, pending 0, canceled 0 All tests passed.
ScalaTest does not try to impose a testing philosophy on you, but rather is designed from the philosophy that
the tool should get out of your way and let you work the way you find most productive.
If FlatSpec doesn't meet your team's needs, that's not a problem. ScalaTest has several other styles to choose from.
Why not give it a try? Just Download ScalaTest, then visit the Quick Start page.
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-2012 Artima, Inc. All Rights Reserved.