Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for TestPattern (0.19 sec)

  1. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DefaultInternalJvmTestRequest.java

            }
    
            return !(testPattern != null ? !testPattern.equals(that.testPattern) : that.testPattern != null);
        }
    
        @Override
        public int hashCode() {
            int result = className != null ? className.hashCode() : 0;
            result = 31 * result + (methodName != null ? methodName.hashCode() : 0);
            result = 31 * result + (testPattern != null ? testPattern.hashCode() : 0);
            return result;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcher.java

        }
    
        private List<TestPattern> preparePatternList(Collection<String> includedTests) {
            List<TestPattern> includePatterns = new ArrayList<TestPattern>(includedTests.size());
            for (String includedTest : includedTests) {
                includePatterns.add(new TestPattern(includedTest));
            }
            return includePatterns;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionListerTest.groovy

            def failure = new RuntimeException("Test IO Exception")
            def resource = Stub(ExternalResource)
            def testPattern = pattern("/a/pattern/with/[revision]/")
            _ * repo.resource(_) >> resource
            _ * resource.list() >> { throw failure }
    
            when:
            lister.listVersions(module, artifact, [testPattern], result)
    
            then:
            ResourceException e = thrown()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/internal-api-nullability.txt

    Class <org.gradle.api.internal.tasks.testing.filter.TestSelectionMatcher$TestPattern> is not annotated (directly or via its package) with @org.gradle.api.NonNullApi in (TestSelectionMatcher.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