Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 110 for booltest (0.13 sec)

  1. src/cmd/go/testdata/script/mod_test_files.txt

    go list -test -deps
    go list -test -deps foo_test.go
    
    # If the file is inside the main module's vendor directory, it should have
    # visibility based on the vendor-relative import path.
    mkdir vendor/example.com/foo
    cp foo_test.go vendor/example.com/foo
    go list -test -deps vendor/example.com/foo/foo_test.go
    
    # If the file is outside the main module entirely, it should be treated as outside.
    cp foo_test.go ../foo_test.go
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 09 18:12:31 UTC 2019
    - 1.1K bytes
    - Viewed (0)
  2. src/cmd/internal/test2json/testdata/issue29755.json

    {"Action":"output","Test":"TestOutputWithSubtest","Output":"    foo_test.go:6: output before sub tests\n"}
    {"Action":"output","Test":"TestOutputWithSubtest","Output":"    foo_test.go:10: output from root test\n"}
    {"Action":"output","Test":"TestOutputWithSubtest","Output":"    foo_test.go:15: output from root test\n"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGStaticLoggingIntegrationTest.groovy

    """
            file("src/test/java/FooTest.java") << """
                import org.testng.annotations.*;
    
                public class FooTest {
                    private final static org.slf4j.Logger SLF4J = org.slf4j.LoggerFactory.getLogger(FooTest.class);
                    private final static java.util.logging.Logger JUL = java.util.logging.Logger.getLogger(FooTest.class.getName());
    
                    @Test public void foo() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.9K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4FilteringIntegrationTest.groovy

            'FooTest'           | ['org.gradle.FooTest', 'com.gradle.FooTest']                       | ['org.gradle.BarTest'] | true
            'FooTest.anyMethod' | ['org.gradle.FooTest', 'com.gradle.FooTest']                       | ['org.gradle.BarTest'] | false
            'org.gradle.*'      | ['org.gradle.FooTest', 'org.gradle.BarTest']                       | ['com.gradle.FooTest'] | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/AbstractTestNGFilteringIntegrationTest.groovy

                                'class' (name: 'FooTest')
                                'class' (name: 'BarTest')
                            }
                        }
                    }
                  }
                }
            """
    
            file("src/test/java/FooTest.java") << """
                ${testFrameworkImports}
                public class FooTest {
                    @Test public void pass() {}
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.5K 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/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitLoggingOutputCaptureIntegrationTest.groovy

            """.stripIndent()
            file("src/test/java/FooTest.java") << """
                ${testFrameworkImports}
                public class FooTest {
                    private final static org.slf4j.Logger SLF4J = org.slf4j.LoggerFactory.getLogger(FooTest.class);
                    private final static java.util.logging.Logger JUL = java.util.logging.Logger.getLogger(FooTest.class.getName());
    
                    @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top