scala/scalatest/exampleSpec.scala
author Tomas Zeman <tzeman@volny.cz>
Mon, 09 Jan 2012 10:07:27 +0100
changeset 21 6f2117ed772d
parent 2 f1b6c7418cb8
permissions -rw-r--r--
.ctags: protected traits, lazy vals

/*
 * Copyright ...
 */
package example

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

class ExampleSpec extends FlatSpec with ShouldMatchers {

  "Example" should "do something" in {

  }

}