| changeset 2 | f1b6c7418cb8 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/scala/scalatest/exampleSpec.scala Tue Oct 19 09:46:57 2010 +0200 @@ -0,0 +1,15 @@ +/* + * Copyright ... + */ +package example + +import org.scalatest.FlatSpec +import org.scalatest.matchers.ShouldMatchers + +class ExampleSpec extends FlatSpec with ShouldMatchers { + + "Example" should "do something" in { + + } + +}