Is it considered okey to define JUnit tests like this:
Copy code
@Test
fun `do something here`() {
}
d
dalexander
04/03/2018, 7:03 PM
Are you referring to using backticks to have spaces in the function name? That’s pretty typical in my experience, although I believe you may run into problems if you try and do that with Android tests.
z
ziggy42
04/03/2018, 7:03 PM
Cool, I'm not doing android đŸ˜„
a
andyb
04/03/2018, 7:22 PM
I really like using sentences for my test functions and often use BDD scenario names e.g.