scala/scalatest/exampleSpec.scala
changeset 2 f1b6c7418cb8
equal deleted inserted replaced
1:bb4a42b3b61f 2:f1b6c7418cb8
       
     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 }