scala/scalatest/exampleSpec.scala
author Tomas Zeman <tzeman@volny.cz>
Wed, 18 Dec 2013 09:20:53 +0100
changeset 39 1fc1aab8014b
parent 2 f1b6c7418cb8
permissions -rw-r--r--
svn commit helper (displays diff); diff must be manually deleted before committing the changes

/*
 * Copyright ...
 */
package example

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

class ExampleSpec extends FlatSpec with ShouldMatchers {

  "Example" should "do something" in {

  }

}