This can be done in JUnit through `@Before`, but i...
# kotlintest
l
This can be done in JUnit through
@Before
, but it's only for all test cases. Many times you have nested setups that will use the same input, but you'll have to repeat them over and over when using JUnit
m
Not true if you've moved to JUnit5. JUnit5 now has @Nested.
👍 1