Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 23 for FooTest (0.54 sec)

  1. 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)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

            result.assertTestClassesExecuted("org.gradle.FooTest")
            result.testClass("org.gradle.FooTest").assertTestOutcomes(testOutcome, testName)
            if (dryRun) {
                result.testClassByXml("org.gradle.FooTest").assertStderr(Matchers.emptyString())
            } else {
                result.testClassByXml("org.gradle.FooTest").assertStderr(Matchers.containsString("ran FooTest.${testName}!"))
            }
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/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: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 10K bytes
    - Viewed (0)
  10. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

        }
    
        def "Only one suite with a given test type allowed per project"() {
            file("src/primaryIntTest/java/com/example/FooTest.java") << "package com.example; class FooTest {}"
            file("src/secondaryIntTest/java/com/example/FooTest.java") << "package com.example; class FooTest {}"
    
            file("application/build.gradle") << """
                apply plugin: 'org.gradle.test-report-aggregation'
            """
    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