Interface BuildTestsListener

  • All Superinterfaces:
    EventListener

    public interface BuildTestsListener
    extends EventListener

    Implement this listener if you need to be notified about running build tests.

    • 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 - unique name_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 - unique name_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 - unique name_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