Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for beforeConfiguration (0.22 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGConfigurationListener.java

         */
        void onConfigurationSkip(ITestResult itr);
        /**
         * Invoked before a configuration method is invoked.
         *
         * Note: This method is only invoked for TestNG 6.2 or higher.
         */
        void beforeConfiguration(ITestResult tr);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestResultProcessorAdapter.java

            resultProcessor.completed(test.getId(), new TestCompleteEvent(testResult.getEndMillis(), TestResult.ResultType.FAILURE));
        }
    
        @Override
        public void beforeConfiguration(ITestResult tr) {
        }
    
        static class TestClassInfo {
    
            private final Object id;
            private int startedCount = 1;
    
            TestClassInfo(Object id) {
                this.id = id;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 13.2K bytes
    - Viewed (0)
Back to top