Interface BuildTestsListener
-
- All Superinterfaces:
EventListener
public interface BuildTestsListener extends EventListener
Implement this listener if you need to be notified about running build tests.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidtestFailed(SRunningBuild build, List<Long> testNameIds)Called when one or more tests have failed.voidtestIgnored(SRunningBuild build, List<Long> testNameIds)Called when one or more tests have been ignored.voidtestPassed(SRunningBuild build, List<Long> testNameIds)Called when one or more tests have finished successfully.
-
-
-
Method Detail
-
testPassed
void testPassed(@NotNull SRunningBuild build, @NotNull List<Long> testNameIds)Called when one or more tests have finished successfully.
- Parameters:
build- running build.testNameIds- uniquename_id's of successful tests, in chronological order. The list supports random access, is unmodifiable and it is guaranteed that neither other listeners nor the dispatcher modify it.- Since:
- 10.0
-
testFailed
void testFailed(@NotNull SRunningBuild build, @NotNull List<Long> testNameIds)Called when one or more tests have failed.
- Parameters:
build- running build.testNameIds- uniquename_id's of failed tests, in chronological order. The list supports random access, is unmodifiable and it is guaranteed that neither other listeners nor the dispatcher modify it.- Since:
- 10.0
-
testIgnored
void testIgnored(@NotNull SRunningBuild build, @NotNull List<Long> testNameIds)Called when one or more tests have been ignored.
- Parameters:
build- running build.testNameIds- uniquename_id's of ignored tests, in chronological order. The list supports random access, is unmodifiable and it is guaranteed that neither other listeners nor the dispatcher modify it.- Since:
- 10.0
-
-