Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 281 for tst2 (0.14 sec)

  1. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollectorSpec.groovy

            //simulating TestNG, where we don't receive beforeSuite for classes
            collector.beforeSuite(root)
    
            collector.beforeTest(test1)
            collector.beforeTest(test2)
    
            collector.afterTest(test1, result1)
            collector.afterTest(test2, result2)
    
            collector.afterSuite(root, new DefaultTestResult(FAILURE, 0, 500, 2, 1, 1, []))
    
            then:
            results.size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenScopesIntegrationTest.groovy

            def notRequired = mavenRepo.module('test', 'dont-include-me', '1.0')
            def m1 = mavenRepo.module('test', 'test1', '1.0').publish()
            def m2 = mavenRepo.module('test', 'test2', '1.0').publish()
            def m3 = mavenRepo.module('test', 'test3', '1.0').publish()
            def m4 = mavenRepo.module('test', 'test4', '1.0').publish()
            def m5 = mavenRepo.module('test', 'test5', '1.0')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 14.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/generate/generate_test.go

    var splitTestsLines = []splitTestWithLine{
    	{"-command TEST1 $GOLINE", []string{"-command", "TEST1", "22"}, 22},
    	{"-command TEST2 ${DOLLAR}GOLINE", []string{"-command", "TEST2", "$GOLINE"}, 26},
    	{"TEST1", []string{"22"}, 33},
    	{"TEST2", []string{"66"}, 66},
    	{"TEST1 ''", []string{"22", "''"}, 99},
    	{"TEST2 ''", []string{"44", "''"}, 44},
    }
    
    // TestGenerateCommandShortHand - similar to TestGenerateCommandParse,
    // except:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 14:09:12 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  4. test/recover1.go

    		defer mustRecover(2)
    		panic(2)
    	}()
    	panic(1)
    }
    
    func test2() {
    	// Sequential panic.
    	defer mustNotRecover()
    	defer func() {
    		v := recover()
    		if v == nil || v.(int) != 2 {
    			println("wrong value", v, 2)
    			die()
    		}
    		defer mustRecover(3)
    		panic(3)
    	}()
    	panic(2)
    }
    
    func test3() {
    	// Sequential panic - like test2 but less picky.
    	defer mustNotRecover()
    	defer func() {
    		recover()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 2.5K bytes
    - Viewed (0)
  5. src/internal/gover/gover_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package gover
    
    import (
    	"reflect"
    	"testing"
    )
    
    func TestCompare(t *testing.T) { test2(t, compareTests, "Compare", Compare) }
    
    var compareTests = []testCase2[string, string, int]{
    	{"", "", 0},
    	{"x", "x", 0},
    	{"", "x", 0},
    	{"1", "1.1", -1},
    	{"1.5", "1.6", -1},
    	{"1.5", "1.10", -1},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 06 23:20:32 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tests/modify_io_nodes.mlir

    // CHECK-NEXT: %[[cst2:.*]] = "tfl.pseudo_qconst"() <{qtype = tensor<32x!quant.uniform<i32:f32, 1.7052092479439231E-4>>, value = dense<0> : tensor<32xi32>}> : () -> tensor<32x!quant.uniform<i32:f32, 1.7052092479439231E-4>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/ProjectDependencyTest.groovy

    import groovy.xml.XmlParser
    import spock.lang.Specification
    
    
    class ProjectDependencyTest extends Specification {
        final static String XML_TEXT = '''
                    <classpathentry kind="src" path="/test2" exported="true">
                        <attributes>
                            <attribute name="org.eclipse.jdt.launching.CLASSPATH_ATTR_LIBRARY_PATH_ENTRY" value="mynative"/>
                        </attributes>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  8. fess-crawler-lasta/src/test/resources/test/text2.txt

    test2...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 6 bytes
    - Viewed (0)
  9. fess-crawler/src/test/resources/test/text2.txt

    test2...
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 6 bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/TestClassExecutionEventGeneratorTest.groovy

            TestDescriptorInternal test1 = Mock()
            TestDescriptorInternal test2 = Mock()
    
            given:
            idGenerator.generateId() >> 1
            test1.id >> 2
            test2.id >> 3
    
            and:
            processor.testClassStarted("some-test")
            processor.started(test1, null)
            processor.started(test2, null)
    
            when:
            processor.testClassFinished(failure)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top