Posted by Jake Wharton onย April 15, 2021 Squareโs Burst library burst onto the scene in 2014 stemming from general dissatisfaction with JUnit 4โs built-in parameterized runner. It enabled the use of enums to vary input to your test class, test methods, or some combination of both. enum class Soda { PEPSI, COKE } @RunWith(BurstJUnit4::class) class […]