Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for booltest (0.33 sec)

  1. src/database/sql/convert_test.go

    		}
    		if ct.wantf64 != 0 && ct.wantf64 != float64Value(ct.d) {
    			errf("want float32 %v, got %v", ct.wantf64, float64Value(ct.d))
    		}
    		if bp, boolTest := ct.d.(*bool); boolTest && *bp != ct.wantbool && ct.wanterr == "" {
    			errf("want bool %v, got %v", ct.wantbool, *bp)
    		}
    		if !ct.wanttime.IsZero() && !ct.wanttime.Equal(timeValue(ct.d)) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 10 20:23:22 UTC 2024
    - 17K bytes
    - Viewed (0)
  2. src/encoding/asn1/asn1_test.go

    package asn1
    
    import (
    	"bytes"
    	"encoding/hex"
    	"fmt"
    	"math"
    	"math/big"
    	"reflect"
    	"strings"
    	"testing"
    	"time"
    )
    
    type boolTest struct {
    	in  []byte
    	ok  bool
    	out bool
    }
    
    var boolTestData = []boolTest{
    	{[]byte{0x00}, true, false},
    	{[]byte{0xff}, true, true},
    	{[]byte{0x00, 0x00}, false, false},
    	{[]byte{0xff, 0xff}, false, false},
    	{[]byte{0x01}, false, false},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 29 18:24:36 UTC 2023
    - 43.6K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

            result.assertTestClassesExecuted("Foo1Test", "Foo2Test")
            result.testClass("Foo1Test").assertTestOutcomes(passedTestOutcome, "pass1")
            result.testClass("Foo2Test").assertTestOutcomes(passedTestOutcome, "pass2")
        }
    
        def "reports when no matching methods found"() {
            file("src/test/java/org/gradle/FooTest.java") << """
                package org.gradle;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  4. src/cmd/covdata/tool_test.go

    cui fliter <******@****.***> 1709781377 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 20:46:32 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  5. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["FooTest.test", "FooTest.bar"]     | "FooTest"                 | "bar"                 | true
            ["FooTest.test", "FooTest.bar"]     | "FooTest"                 | "baz"                 | false
            ["FooTest.test", "FooTest.bar"]     | "Footest"                 | "test"                | false
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGLoggingOutputCaptureIntegrationTest.groovy

            """Test suite '$testSuiteName' -> beforeTest out
    Test suite '$testSuiteName' -> beforeTest err
    Test class FooTest -> beforeClass out
    Test class FooTest -> beforeClass err
    Test method m1(FooTest) -> m1: α</html>
    Test method m1(FooTest) -> m1 err
    Test method m2(FooTest) -> m2 out
    Test method m2(FooTest) -> m2 err
    Test suite '$testSuiteName' -> afterClass out
    Test suite '$testSuiteName' -> afterClass err
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:39 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/TestReportDataCollectorSpec.groovy

            results.size() == 1
            def fooTest = results.values().toList().first()
            fooTest.className == 'FooTest'
            fooTest.startTime == 100
            fooTest.testsCount == 2
            fooTest.failuresCount == 1
            fooTest.duration == 200
            fooTest.results.size() == 2
            fooTest.results.find { it.name == 'testMethod' && it.endTime == 200 && it.duration == 100 }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/junit/result/JUnitXmlResultWriterSpec.groovy

    <testsuite name="com.foo.FooTest" tests="4" skipped="1" failures="1" errors="0" timestamp="2012-11-19T17:09:28" hostname="localhost" time="0.045">
      <properties/>
      <testcase name="some test" classname="com.foo.FooTest" time="0.015"/>
      <testcase name="some test two" classname="com.foo.FooTest" time="0.015"/>
      <testcase name="some failing test" classname="com.foo.FooTest" time="0.01">
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 18:51:05 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // these names:
    //
    //    * InstantiationName/FooTest.DoesBlah/0 for "meeny"
    //    * InstantiationName/FooTest.DoesBlah/1 for "miny"
    //    * InstantiationName/FooTest.DoesBlah/2 for "moe"
    //    * InstantiationName/FooTest.HasBlahBlah/0 for "meeny"
    //    * InstantiationName/FooTest.HasBlahBlah/1 for "miny"
    //    * InstantiationName/FooTest.HasBlahBlah/2 for "moe"
    //
    // You can use these names in --gtest_filter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

    typedef testing::Types<char, int, unsigned int> MyTypes;
    TYPED_TEST_CASE(FooTest, MyTypes);
    
    // If the type list contains only one type, you can write that type
    // directly without Types<...>:
    //   TYPED_TEST_CASE(FooTest, int);
    
    // Then, use TYPED_TEST() instead of TEST_F() to define as many typed
    // tests for this test case as you want.
    TYPED_TEST(FooTest, DoesBlah) {
      // Inside a test, refer to TypeParam to get the type parameter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top