1
/*
2
* Copyright ...
3
*/
4
package example
5
6
import org.scalatest.FlatSpec
7
import org.scalatest.matchers.ShouldMatchers
8
9
class ExampleSpec extends FlatSpec with ShouldMatchers {
10
11
"Example" should "do something" in {
12
13
}
14
15