Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for IgnoredTestDescriptorProvider (0.88 sec)

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

    import org.junit.runner.Description;
    import org.junit.runner.Request;
    import org.junit.runner.RunWith;
    import org.junit.runner.Runner;
    import org.junit.runners.AllTests;
    
    import java.util.List;
    
    public class IgnoredTestDescriptorProvider {
        public static List<Description> getAllDescriptions(Description description, String className) {
            try {
                final Class<?> testClass = description.getClass().getClassLoader().loadClass(className);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/IgnoredTestDescriptorProviderTest.groovy

        }
    
        private List<Description> describe(Class<?> testClass) {
            IgnoredTestDescriptorProvider.getAllDescriptions(Description.createSuiteDescription(testClass), testClass.getName())
        }
    
        @SuppressWarnings
        def "can get @RunWith runner through legacy means"() {
            expect:
            IgnoredTestDescriptorProvider.getRunnerLegacy(RunWithSpec.class) instanceof CustomRunner
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestEventAdapter.java

            }
        }
    
        private void processIgnoredClass(Description description) throws Exception {
            String className = className(description);
            for (Description childDescription : IgnoredTestDescriptorProvider.getAllDescriptions(description, className)) {
                testIgnored(childDescription);
            }
        }
    
        @Override
        public void testFinished(Description description) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.tasks.testing.junit.IgnoredTestDescriptorProvider> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (IgnoredTestDescriptorProvider.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 967.9K bytes
    - Viewed (0)
Back to top