scala/scalatest/exampleSpec.scala
author Tomas Zeman <tzeman@volny.cz>
Wed, 12 Oct 2011 12:39:47 +0200
changeset 17 090b5c870576
parent 2 f1b6c7418cb8
permissions -rw-r--r--
.ctags: tag final classes

/*
 * Copyright ...
 */
package example

import org.scalatest.FlatSpec
import org.scalatest.matchers.ShouldMatchers

class ExampleSpec extends FlatSpec with ShouldMatchers {

  "Example" should "do something" in {

  }

}