禁用

这是一个禁用的测试案例:

  1. import org.junit.jupiter.api.Disabled;
  2. import org.junit.jupiter.api.Test;
  3. @Disabled
  4. class DisabledClassDemo {
  5. @Test
  6. void testWillBeSkipped() {
  7. }
  8. }

这是一个带有禁用测试方法的测试案例:

  1. import org.junit.jupiter.api.Disabled;
  2. import org.junit.jupiter.api.Test;
  3. class DisabledTestsDemo {
  4. @Disabled
  5. @Test
  6. void testWillBeSkipped() {
  7. }
  8. @Test
  9. void testWillBeExecuted() {
  10. }
  11. }