How can I escape a function name so that it can span multiple lines? For example
@Test
fun `This is a really long description of what should happen to this function when the IDs do not match up.`() {
// test
}
What I would want is something like
@Test
fun `This is a really long description of what should happen to this \
function when the IDs do not match up.`() { // test }
Is this possible?