- About Scala
- Documentation
- Code Examples
- Software
- Scala Developers
[ANN] Specsy 1.0.0 released - a testing framework
Tue, 2010-08-17, 12:11
I'm happy to release Specsy 1.0.0 for Scala 2.8. It's a testing
framework quite similar to Specs, but with more focus on simplicity and
reliability (finding too many bugs in Specs was what initiated Specsy's
development; also I think that you should be able to look at the test
base class and know right away all of its API).
For more information, see http://github.com/orfjackal/specsy
Specsy is available in the Maven Central Repository:
net.orfjackal.specsy
specsy
1.0.0
test
Here is a sample of what Specsy looks like in action. Specsy in itself
doesn't have an assertion syntax, but you can use the assertions from
JUnit, Specs or ScalaTest easily. This example uses JUnit's assertions:
http://github.com/orfjackal/specsy/blob/master/src/test/scala/net/orfjac...