Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,408 for suiteID (0.12 sec)

  1. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestTestResults.groovy

            this.resultsNode = parser.parse(testResultsFile)
    
            resultsNode.testsuite.each { Node suiteNode ->
                def suite = new Suite(suiteNode)
                suites.put(suite.name, suite)
            }
        }
    
        List<String> getSuiteNames() {
            suites.keySet() as List
        }
    
        def checkTestCases(int total, int succeeded, int failed) {
            def tests = resultsNode.@tests as int
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/JUnitJupiterOptionsIntegrationTest.groovy

    class JUnitJupiterOptionsIntegrationTest extends AbstractTestFrameworkOptionsIntegrationTest {
        def "options for test framework are respected for JUnitJupiter in built-in test suite"() {
            buildFile << """
                testing {
                    suites {
                        test {
                            useJUnitJupiter()
                            targets.all {
                                testTask.configure {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/FallbackTestClientSocketFactory.kt

        socket: SSLSocket,
      ) : DelegatingSSLSocket(socket) {
        override fun setEnabledCipherSuites(suites: Array<String>) {
          val enabledCipherSuites = mutableListOf<String>()
          for (suite in suites) {
            if (suite != TLS_FALLBACK_SCSV) {
              enabledCipherSuites.add(suite)
            }
          }
          delegate!!.enabledCipherSuites = enabledCipherSuites.toTypedArray<String>()
        }
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/test-suite-plugin/kotlin/build.gradle.kts

     * limitations under the License.
     */
    
    // tag::apply-jvm-test-suite[]
    plugins {
        java
        `jvm-test-suite`
    }
    // end::apply-jvm-test-suite[]
    
    version = "1.0.2"
    group = "org.gradle.sample"
    
    repositories {
        mavenCentral()
    }
    
    // tag::configure-testing-extension[]
    testing {
        suites { // <1>
            val test by getting(JvmTestSuite::class) { // <2>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/results/AttachParentTestResultProcessorTest.groovy

            then:
            1 * target.started(test, { it.parentId == 'suite1' })
        }
    
        def doesNothingToTestWhichHasAParentId() {
            TestDescriptorInternal suite = suite('suite')
            TestDescriptorInternal test = test('test')
            TestStartEvent testStartEvent = new TestStartEvent(200L, 'parent')
            processor.started(suite, new TestStartEvent(100L))
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/testing/test-suite-plugin/groovy/build.gradle

     * limitations under the License.
     */
    
    // tag::apply-jvm-test-suite[]
    plugins {
        id 'java'
        id 'jvm-test-suite'
    }
    // end::apply-jvm-test-suite[]
    
    version = '1.0.2'
    group = 'org.gradle.sample'
    
    repositories {
        mavenCentral()
    }
    
    // tag::configure-testing-extension[]
    testing {
        suites { // <1>
            test { // <2>
                useJUnitJupiter() // <3>
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  7. guava-testlib/test/com/google/common/collect/testing/OpenJdk6Tests.java

        suite.addTest(OpenJdk6QueueTests.suite());
        suite.addTest(OpenJdk6MapTests.suite());
        return suite;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 1.3K bytes
    - Viewed (0)
  8. src/crypto/tls/cipher_suites.go

    // server) or advertise (on the client) TLS 1.0–1.2 cipher suites.
    //
    // Cipher suites are filtered but not reordered based on the application and
    // peer's preferences, meaning we'll never select a suite lower in this list if
    // any higher one is available. This makes it more defensible to keep weaker
    // cipher suites enabled, especially on the server side where we get the last
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  9. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/googletest/GoogleTestIntegrationTest.groovy

            def testResults = new GoogleTestTestResults(file("build/test-results/helloTest/test_detail.xml"))
            testResults.suiteNames == ['HelloTest']
            testResults.suites['HelloTest'].passingTests == ['test_sum']
            testResults.suites['HelloTest'].failingTests == []
            testResults.checkTestCases(1, 1, 0)
        }
    
        @ToBeFixedForConfigurationCache
        def "assemble does not build or run tests"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

            result.assertHasErrorOutput("Could not configure suite: 'secondaryIntTest'. Another test suite: 'primaryIntTest' uses the type: 'integration-test' and has already been configured in project: 'transitive'.")
        }
    
        def "Only one suite with a given test type allowed per project (including the built-in test suite)"() {
            file("src/test/java/com/example/FooTest.java") << "package com.example; class FooTest {}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
Back to top