Hello World Spec Test

src/test/scala 目录中的一个名为 HelloWorldSpec.scala 的文件中创建一个测试类。把它放在文件中:

import org.scalatest.{FlatSpec, Matchers}

class HelloWorldSpec extends FlatSpec with Matchers {

  "Hello World" should "not be an empty String" in {
      val helloWorld = "Hello World"
      helloWorld should not be ("")
  }
}