Skip to content

Instantly share code, notes, and snippets.

@sawadashota
Created February 10, 2018 12:27
Show Gist options
  • Save sawadashota/95b8e220d62b11f1382d1435f67b532f to your computer and use it in GitHub Desktop.
Save sawadashota/95b8e220d62b11f1382d1435f67b532f to your computer and use it in GitHub Desktop.
Scalaのテスト
import org.scalatest._
class ScalaTest extends WordSpecLike with MustMatchers {
"Title" must {
"description" in {
assert(true)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment