Initial Commit

This commit is contained in:
2016-08-13 18:20:14 -05:00
commit 50f4a86fd8
408 changed files with 15301 additions and 0 deletions

View File

View File

@@ -0,0 +1,15 @@
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!")
}
}