To disable a test in junit5, using @Disabled annotation in the class or method definition. For example, @Disabled class SortTest { @Test void sortAscTest() { xxxx } } or class SortTest { @Disabled @Test void sortAscTest() { xxxx } }… Read More
Technology Makes Life Better!
To disable a test in junit5, using @Disabled annotation in the class or method definition. For example, @Disabled class SortTest { @Test void sortAscTest() { xxxx } } or class SortTest { @Disabled @Test void sortAscTest() { xxxx } }… Read More