scala/scalatest/exampleSpec.scala
author Tomas Zeman <tomas@functionals.cz>
Thu, 16 Jan 2020 14:28:26 +0100
changeset 57 a0dd1720c796
parent 2 f1b6c7418cb8
permissions -rw-r--r--
config/.gitconfig: tomas@functionals.cz

/*
 * Copyright ...
 */
package example

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

class ExampleSpec extends FlatSpec with ShouldMatchers {

  "Example" should "do something" in {

  }

}