Skip to content

Instantly share code, notes, and snippets.

@oswaldo
Last active August 29, 2015 14:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save oswaldo/a7838cd07822930319a6 to your computer and use it in GitHub Desktop.
Save oswaldo/a7838cd07822930319a6 to your computer and use it in GitHub Desktop.
object WorkaroundTestRunner {
import junit.framework.JUnit4TestAdapter
import junit.textui.TestRunner
def main(args: Array[String]): Unit = {
TestRunner.run(new JUnit4TestAdapter(classOf[YourTestClass]))
println("Done!")
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment