summaryrefslogtreecommitdiff
path: root/docs/example-3/foo/test/src/ExampleTests.scala
blob: 52df8c96d6aec8736309b62dd2e6863350413ac6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
package foo
import utest._
object ExampleTests extends TestSuite{
  def tests = Tests{
    test("hello"){
      val result = Example.hello()
      assert(result == "Hello World")
      result
    }
  }
}