Sha256: a1762d8a4201738def75c8f334e170b8981dbf8a5b997e88d1be5aa39466c123
Contents?: true
Size: 358 Bytes
Versions: 34
Compression:
Stored size: 358 Bytes
Contents
import org.scalatest.{Matchers, FunSuite} class HelloWorldTest extends FunSuite with Matchers { test("Without name") { HelloWorld.hello() should be ("Hello, World!") } test("with name") { HelloWorld.hello("Jane") should be ("Hello, Jane!") } test("with umlaut name") { HelloWorld.hello("Jürgen") should be ("Hello, Jürgen!") } }
Version data entries
34 entries across 34 versions & 1 rubygems