In Kotlin, it's possible to name a method using back-ticks like this:
fun `i am a test method`(){
Assert.assertEquals("x", "x")
}
The compiler generates a method with underscores instead of blanks: "i_am_a_test_method", which seems reasonable as the JVM does not permit methods with blanks afaik. How can Junit and/or Gradle report these tests with the back-ticked name though?