Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 289 for suiteID (0.49 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessorTest.groovy

            def suite1 = new DefaultTestSuiteDescriptor("suite1", "FastTests");
            def suite2 = new DefaultTestSuiteDescriptor("suite2", "SlowTests");
            def ok = new DefaultTestDescriptor("ok", "DogTest", "shouldBarkAtStrangers");
            def broken = new DefaultTestDescriptor("broken", "DogTest", "shouldDrinkMilk");
    
            when:
            adapter.started(root, new TestStartEvent(100L))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestResultProcessorAdapter.java

        }
    
        @Override
        public void onStart(ISuite suite) {
            TestDescriptorInternal testInternal;
            synchronized (lock) {
                if (suiteId.containsKey(suite)) {
                    // Can get duplicate start events
                    return;
                }
                Object id = idGenerator.generateId();
                testInternal = new DefaultTestSuiteDescriptor(id, suite.getName());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client.go

    		keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.hello.random, hs.serverHello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
    	var clientCipher, serverCipher any
    	var clientHash, serverHash hash.Hash
    	if hs.suite.cipher != nil {
    		clientCipher = hs.suite.cipher(clientKey, clientIV, false /* not for reading */)
    		clientHash = hs.suite.mac(clientMAC)
    		serverCipher = hs.suite.cipher(serverKey, serverIV, true /* for reading */)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  4. src/crypto/tls/handshake_server.go

    		keysFromMasterSecret(c.vers, hs.suite, hs.masterSecret, hs.clientHello.random, hs.hello.random, hs.suite.macLen, hs.suite.keyLen, hs.suite.ivLen)
    
    	var clientCipher, serverCipher any
    	var clientHash, serverHash hash.Hash
    
    	if hs.suite.aead == nil {
    		clientCipher = hs.suite.cipher(clientKey, clientIV, true /* for reading */)
    		clientHash = hs.suite.mac(clientMAC)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_server_tls13.go

    	}
    	for _, suiteID := range preferenceList {
    		hs.suite = mutualCipherSuiteTLS13(hs.clientHello.cipherSuites, suiteID)
    		if hs.suite != nil {
    			break
    		}
    	}
    	if hs.suite == nil {
    		c.sendAlert(alertHandshakeFailure)
    		return errors.New("tls: no cipher suite supported by both client and server")
    	}
    	c.cipherSuite = hs.suite.id
    	hs.hello.cipherSuite = hs.suite.id
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 17:23:54 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  6. pkg/test/framework/suite.go

    	EnvironmentFactory(fn resource.EnvironmentFactory) Suite
    	// Label all the tests in suite with the given labels
    	Label(labels ...label.Instance) Suite
    	// SkipIf skips the suite if the function returns true
    	SkipIf(reason string, fn resource.ShouldSkipFn) Suite
    	// Skip marks a suite as skipped with the given reason. This will prevent any setup functions from occurring.
    	Skip(reason string) Suite
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessorTest.groovy

            then: 1 * processor.completed(1, { it.resultType == null })
            0 * processor._
        }
    
        void "executes multiple suites and tests"() {
            def suite1 = dir.file("suite1.xml") << """<?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE suite SYSTEM "http://testng.org/testng-1.0.dtd">
    <suite name="suite 1">
      <test name="test 1">
        <classes>
          <class name="${ATestNGClass.name}"/>
        </classes>
      </test>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 18 12:30:10 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/jvm_test_suite_plugin.adoc

    ====
    include::sample[dir="snippets/testing/test-suite-configure-default-suite/kotlin",files="build.gradle.kts[tags=configure-default-suite]"]
    include::sample[dir="snippets/testing/test-suite-configure-default-suite/groovy",files="build.gradle[tags=configure-default-suite]"]
    ====
    
    <1> Declare the `test` test suite uses the TestNG test framework.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 14:47:11 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

      CU_pTest          pTest;            /**< Pointer to the 1st test in the suite. */
      CU_InitializeFunc pInitializeFunc;  /**< Pointer to the suite initialization function. */
      CU_CleanupFunc    pCleanupFunc;     /**< Pointer to the suite cleanup function. */
    
      unsigned int      uiNumberOfTests;  /**< Number of tests in the suite. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestOptionsIntegrationSpec.groovy

            assertIntegTestsExecuted()
        }
        // endregion custom test suite
    
        // region all suites
        def "can set test framework in #suiteName suite prior to setting options within test task"() {
            given:
            buildFile << """
            // Configure task through suite
            testing {
                suites {
                    integTest(JvmTestSuite) {
                        useJUnitJupiter()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.5K bytes
    - Viewed (0)
Back to top