dave08
10/14/2018, 5:05 PMEmpty test suite
, is this a known issue? Is there some kind of workaround?raniejade
10/14/2018, 10:52 PM@RunWith(JUnitPlatform::class)
?dave08
10/15/2018, 2:20 AMraniejade
10/15/2018, 4:51 AMraniejade
10/15/2018, 4:52 AM@RunWith(...)
just works because JUnit 5 implemented a support for JUnit 4. Pros is you can run tests for the two frameworks at the same time, but you lose the ability to run a specific group within a Spek test.raniejade
10/15/2018, 4:53 AM@RunWith(...)
it's not the spek plugin that's doing the execution but the built-in JUnit 4 support IJ has.dave08
10/15/2018, 4:54 AMraniejade
10/15/2018, 4:55 AMdave08
10/15/2018, 5:02 AMdave08
10/16/2018, 10:30 AMjunitPlatform { install/installEngine 'spek' }
from Gradle, did an invalidate cache/restart on AS, but still have Spek 1.x running specs, and JUnit doesn't work... is there any current example for this? I've spent about 2 days looking all over for answers and trying different things... @raniejadedave08
10/16/2018, 10:31 AMthemishkun
10/16/2018, 3:44 PMkotlintest
. I updated all junit platform, vintage-engine and jupiter-engine to max version, also amped up gradle and android plugindave08
10/16/2018, 4:34 PMraniejade
10/16/2018, 8:55 PM