Skip to content

Instantly share code, notes, and snippets.

@kzkaed
Last active June 19, 2016 14:46
Show Gist options
  • Save kzkaed/1289c9b299055d9b4f7e to your computer and use it in GitHub Desktop.
Save kzkaed/1289c9b299055d9b4f7e to your computer and use it in GitHub Desktop.
class Hiker {
def answer(): String = {
return 42
}
}
class HikerSuite extends FunSuite {
test("the answer to life the universe and everything") {
val hiker = new Hiker
assert(hiker.answer() === (42))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment