Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 240 for testWrite (0.15 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/reporting/dependents/internal/DependentComponentsRenderableDependency.java

            checkNotNull(id, "id must not be null");
            checkNotNull(emptyToNull(name), "name must not be null nor empty");
            this.id = id;
            this.name = name;
            this.description = emptyToNull(description);
            this.buildable = buildable;
            this.testSuite = testSuite;
            this.children = children;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/internal/DefaultBinaryNamingSchemeTest.groovy

            "TestSuite" | "LinuxTest"  | null           | "testSuite/linuxTest"
            "TestSuite" | "LinuxTest"  | "bin-files"    | "bin-files/testSuite/linuxTest"
        }
    
        def "prefers role over binary type in output directory names"() {
            def namingScheme = DefaultBinaryNamingScheme.component("testSuite").withBinaryType("GoogleTestExecutable").withVariantDimension("linux")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 10K bytes
    - Viewed (0)
  3. platforms/software/test-suites-base/src/main/java/org/gradle/testing/base/internal/DefaultTestingExtension.java

    import org.gradle.api.model.ObjectFactory;
    import org.gradle.testing.base.TestSuite;
    import org.gradle.testing.base.TestingExtension;
    
    import javax.inject.Inject;
    
    public abstract class DefaultTestingExtension implements TestingExtension {
        private final ExtensiblePolymorphicDomainObjectContainer<TestSuite> suites;
    
        @Inject
        public DefaultTestingExtension() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 17 16:02:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  4. cmd/prune-junit-xml/prunexml_test.go

    		</testcase>
    	</testsuite>
    </testsuites>`
    
    	outputXML := `<?xml version="1.0" encoding="UTF-8"?>
    <testsuites>
    	<testsuite tests="3" failures="1" time="271.610000" name="k8s.io/kubernetes/test/integration/apiserver" timestamp="">
    		<properties>
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 12:26:00 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/app/XCTestSourceElement.java

            content.append("import XCTest\n");
    
            for (XCTestSourceFileElement testSuite : testSuites) {
                content.append("extension " + testSuite.getTestSuiteName() + " {\n");
                content.append("  public static var allTests = [\n");
                for (XCTestCaseElement testCase : testSuite.getTestCases()) {
                    content.append("    (\"" + testCase.getName() + "\", " + testCase.getName() + "),\n");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/devel.usertools/squash_testlogs.py

      ).group(0)
      for testsuite in r:
        testsuite._elem.set("source_file", source_file)
        # Remove empty testcases
        for p in testsuite._elem.xpath(".//testcase"):
          if not len(p):  # pylint: disable=g-explicit-length-test
            testsuite._elem.remove(p)
        # Change "testsuite > testcase,system-out" to "testsuite > testcase > error"
        for p in testsuite._elem.xpath(".//system-out"):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 19:00:37 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/BuildableTestResultsProvider.groovy

            BuildableTestClassResult testSuite = new BuildableTestClassResult(idCounter++, className, timestamp)
            testSuite.with(configClosure)
            testClasses[testSuite.id] = testSuite
        }
    
        void writeAllOutput(long classId, TestOutputEvent.Destination destination, Writer writer) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/ByteSourceTester.java

      private static final ImmutableList<Method> testMethods = getTestMethods(ByteSourceTester.class);
    
      static TestSuite tests(String name, ByteSourceFactory factory, boolean testAsCharSource) {
        TestSuite suite = new TestSuite(name);
        for (Entry<String, String> entry : TEST_STRINGS.entrySet()) {
          if (testAsCharSource) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/SortedMapTestSuiteBuilder.java

        return testers;
      }
    
      @Override
      public TestSuite createTestSuite() {
        if (!getFeatures().contains(KNOWN_ORDER)) {
          List<Feature<?>> features = Helpers.copyToList(getFeatures());
          features.add(KNOWN_ORDER);
          withFeatures(features);
        }
        return super.createTestSuite();
      }
    
      @Override
      protected List<TestSuite> createDerivedSuites(
          FeatureSpecificTestSuiteBuilder<
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. pkg/kube/kclient/clienttest/test_helpers.go

    	c kclient.ReadWriter[T]
    	t test.Failer
    	TestWriter[T]
    }
    
    type TestWriter[T controllers.Object] struct {
    	c kclient.Writer[T]
    	t test.Failer
    }
    
    func (t TestClient[T]) Get(name, namespace string) T {
    	return t.c.Get(name, namespace)
    }
    
    func (t TestClient[T]) List(namespace string, selector klabels.Selector) []T {
    	return t.c.List(namespace, selector)
    }
    
    func (t TestWriter[T]) Create(object T) T {
    	t.t.Helper()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 19:18:21 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top