Need coding rule to allow spaces in funcion/method in Java/Kotlin test code

In our Kotlin unit test code, the function name is often like below:

@Test
func `Given initial state When some events happen Then check results`() {
    // Test code
}

I wonder whether we can add a coding rule to allow above.

Thanks,
Kwok