https://kotlinlang.org logo
s

sam

08/24/2019, 10:29 PM
I've not looked into it yet, but maybe something like
Copy code
class Configuration : AbstractConfiguration {
   init {

      install(MyTestListener)
      install(MyTestExtension)
      
      beforeProject {
         
      }
      
      after Project {
         
      }

      parallelize(1)
      writeSpecFailureFile("kolintest.failures")

      includeTags(Hive, Windows)
      excludeTags(Linux)
   }
}
Not sure if it's a big deal or not.
👍 1