scala/scalatest/exampleSpec.scala
author Tomas Zeman <tzeman@volny.cz>
Mon, 30 Sep 2013 11:02:46 +0200
changeset 36 738979e906a1
parent 2 f1b6c7418cb8
permissions -rw-r--r--
config/.gitconfig: git aliases: man, di, qci, qfin (a.k.a. hg)

/*
 * Copyright ...
 */
package example

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

class ExampleSpec extends FlatSpec with ShouldMatchers {

  "Example" should "do something" in {

  }

}