Artima has released ScalaTest 1.0, an open-source testing framework that speed ups the testing process for Java-based applications by reducing the number of lines of code required in testing. Additionally, ScalaTest can run on multiple processor cores for parallel testing.
With ScalaTest, which is released under the Apache 2.0 license, you can test either Scala or Java code. By integrating with tools such as JUnit and TestNG, Ant, and Maven, ScalaTest supposedly makes it easier to take testing to a higher, more productive level in new or existing Scala or Java projects.
ScalaTest is designed to support different kinds of testing, including unit, functional, integration, and acceptance testing, while supporting test-driven, behavior-driven, and other development methodologies.
As its name suggests, ScalaTest is written almost entirely in Scala, a hybrid functional/object programming language. Scala is a multi-paradigm language that integrates essential features of iterative object-oriented programming with the functional programming paradigm. It compiles to JVM bytecodes -- you can use Java libraries in your Scala programs and inherit from Java classes. Scala lets you isolate those parts of your code that truly need the benefits of functional programming and write everything else in Java. While there's also a version for .NET, Scala is really married to Java, having been developed by Martin Obersky, one of the designers of Java generics and the author of the current javac reference compiler.
ScalaTest was written by Bill Venners, George Berger, Josh Cough, and other contributors. ScalaTest, which is almost exclusively written in Scala, follows and improves upon the Java code and design of Artima SuiteRunner, another testing tool written primarily by Bill Venners.
You can get the source code here.