Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 289 for suiteID (0.17 sec)

  1. platforms/ide/tooling-api/src/test/groovy/org/gradle/tooling/internal/consumer/parameters/BuildProgressListenerAdapterForTestOperationsTest.groovy

            _ * testDescriptor.getId() >> 1
            _ * testDescriptor.getName() >> 'some test suite'
            _ * testDescriptor.getDisplayName() >> 'some test suite in human readable form'
            _ * testDescriptor.getTestKind() >> InternalJvmTestDescriptor.KIND_SUITE
            _ * testDescriptor.getSuiteName() >> 'some suite'
            _ * testDescriptor.getClassName() >> 'some class'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  2. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

                }
                class TestListenerImpl implements TestListener {
                    void beforeSuite(TestDescriptor suite) { println "START Test Suite [\$suite.className] [\$suite.name]" }
                    void afterSuite(TestDescriptor suite, TestResult result) { println "FINISH Test Suite [\$suite.className] [\$suite.name] [\$result.resultType] [\$result.testCount]" }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  3. android/guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

        TestSuite suite = new TestSuite("java.util Sets");
        suite.addTest(testsForEmptySet());
        suite.addTest(testsForSingletonSet());
        suite.addTest(testsForHashSet());
        suite.addTest(testsForLinkedHashSet());
        suite.addTest(testsForEnumSet());
        suite.addTest(testsForTreeSetNatural());
        suite.addTest(testsForTreeSetWithComparator());
        suite.addTest(testsForCopyOnWriteArraySet());
        suite.addTest(testsForUnmodifiableSet());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  4. guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

        TestSuite suite = new TestSuite("java.util Maps");
        suite.addTest(testsForCheckedMap());
        suite.addTest(testsForCheckedNavigableMap());
        suite.addTest(testsForCheckedSortedMap());
        suite.addTest(testsForEmptyMap());
        suite.addTest(testsForEmptyNavigableMap());
        suite.addTest(testsForEmptySortedMap());
        suite.addTest(testsForSingletonMap());
        suite.addTest(testsForHashMap());
        suite.addTest(testsForHashtable());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/TestsForMapsInJavaUtil.java

        suite.addTest(testsForCheckedMap());
        suite.addTest(testsForCheckedSortedMap());
        suite.addTest(testsForEmptyMap());
        suite.addTest(testsForSingletonMap());
        suite.addTest(testsForHashMap());
        suite.addTest(testsForHashtable());
        suite.addTest(testsForLinkedHashMap());
        suite.addTest(testsForTreeMapNatural());
        suite.addTest(testsForTreeMapWithComparator());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 17K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/collect/testing/TestsForSetsInJavaUtil.java

        TestSuite suite = new TestSuite("java.util Sets");
        suite.addTest(testsForCheckedNavigableSet());
        suite.addTest(testsForEmptySet());
        suite.addTest(testsForEmptyNavigableSet());
        suite.addTest(testsForEmptySortedSet());
        suite.addTest(testsForSingletonSet());
        suite.addTest(testsForHashSet());
        suite.addTest(testsForLinkedHashSet());
        suite.addTest(testsForEnumSet());
        suite.addTest(testsForSynchronizedNavigableSet());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

      public static TestSuite suite() {
        TestSuite suite = new TestSuite();
    
        Method[] methods = Monitor.class.getMethods();
        sortMethods(methods);
        for (Method method : methods) {
          if (isAnyEnter(method) || isWaitFor(method)) {
            validateMethod(method);
            addTests(suite, method);
          }
        }
    
        assertEquals(548, suite.testCount());
    
        return suite;
      }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/collect/TableCollectionTest.java

        CollectionFeature.ALLOWS_NULL_QUERIES
      };
    
      @J2ktIncompatible
      @GwtIncompatible // suite
      public static Test suite() {
        TestSuite suite = new TestSuite();
    
        // Not testing rowKeySet() or columnKeySet() of Table.transformValues()
        // since the transformation doesn't affect the row and column key sets.
    
        suite.addTest(
            SetTestSuiteBuilder.using(
                    new TestStringSetGenerator() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 19 20:34:55 UTC 2024
    - 35.3K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/collect/Collections2Test.java

      @J2ktIncompatible
      @GwtIncompatible // suite
      public static Test suite() {
        TestSuite suite = new TestSuite(Collections2Test.class.getSimpleName());
        suite.addTest(testsForFilter());
        suite.addTest(testsForFilterAll());
        suite.addTest(testsForFilterLinkedList());
        suite.addTest(testsForFilterNoNulls());
        suite.addTest(testsForFilterFiltered());
        suite.addTest(testsForTransform());
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 10:16:44 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  10. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollectorSpec.groovy

        def "writes test outputs for failed suite"() {
            def suite = new DefaultTestSuiteDescriptor("1", "Suite")
            def failure = org.gradle.api.tasks.testing.TestFailure.fromTestFrameworkFailure(new RuntimeException("failure"))
            def result = new DefaultTestResult(FAILURE, 0, 0, 0, 0, 0, [failure])
    
            when:
            collector.beforeSuite(suite)
            collector.onOutput(suite, new DefaultTestOutputEvent(StdOut, "suite-out"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
Back to top