If you work on Java/Scala project and Gradle is your build tool of choice, bear in mind that ScalaTest
framework has only JUnitRunner
to run your scala tests. In other words, your have a choice:
- Java JUnit tests + Scala Tests run with JUnitRunner => Better Gradle integration
- Java testNG tests + Scala Tests run with Scala Runner => Poor Gradle Integration, since scala test runner is a single bulk task from Gradle's point of view.