I got this exception even though I had a public method annotaded with @Test
. Turned out was importing org.junit.jupiter.api.Test
, I changed to org.junit.Test
and it worked fine.
I got this exception even though I had a public method annotaded with @Test
. Turned out was importing org.junit.jupiter.api.Test
, I changed to org.junit.Test
and it worked fine.