scala/scalatest/exampleSpec.scala
author Tomas Zeman <tomas@functionals.cz>
Mon, 27 Apr 2020 22:24:49 +0200
changeset 59 a3e588dcdcb3
parent 2 f1b6c7418cb8
permissions -rw-r--r--
vimb config/dark style (based on https://fanglingsu.github.io/vimb/howto.html)

/*
 * Copyright ...
 */
package example

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

class ExampleSpec extends FlatSpec with ShouldMatchers {

  "Example" should "do something" in {

  }

}