Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getIgnoreOrDisabledAnnotation (0.35 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/fixture/AbstractTestingMultiVersionIntegrationTest.groovy

        }
    
        String maybeParentheses(String methodName) {
            return testSourceConfiguration.maybeParentheses(methodName)
        }
    
        String getIgnoreOrDisabledAnnotation() {
            return testSourceConfiguration.getIgnoreOrDisabledAnnotation()
        }
    
        def setup() {
            executer.withRepositoryMirrors()
        }
    
        /**
         * Test framework specific configuration for the build script.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4CommonTestSources.groovy

            }
    
            @Override
            String maybeParentheses(String methodName) {
                return methodName
            }
    
            @Override
            String getIgnoreOrDisabledAnnotation() {
                return "@Ignore"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGMultiVersionTest.groovy

                return "@BeforeTest"
            }
    
            @Override
            String getAfterTestAnnotation() {
                return "@AfterTest"
            }
    
            @Override
            String getIgnoreOrDisabledAnnotation() {
                return "@Ignore"
            }
    
            @Override
            String getRunOrExtendWithAnnotation(String runOrExtendWithClasses) {
                // TODO implement this if needed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterMultiVersionTest.groovy

            }
    
            @Override
            String maybeParentheses(String methodName) {
                return "${methodName}()"
            }
    
            @Override
            String getIgnoreOrDisabledAnnotation() {
                return "@Disabled"
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top