Skip to content

Commit

Permalink
Add Hello World test
Browse files Browse the repository at this point in the history
  • Loading branch information
jvican committed Oct 13, 2016
1 parent a8a179f commit 87c225c
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
3 changes: 2 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ name := "dummy"
version := "1.0"

scalaVersion := "2.11.8"


libraryDependencies += "org.scalatest" % "scalatest_2.11" % "3.0.0" % "test"
9 changes: 9 additions & 0 deletions src/test/scala/HelloWorld.scala
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
package helloworld

import org.scalatest.FunSuite

class HelloWorld extends FunSuite {
test("Print 'Hello world!'") {
println("Hello World!")
}
}

0 comments on commit 87c225c

Please sign in to comment.