Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for BazTest (0.12 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGSuiteIntegrationTest.groovy

                public class BarTest {
                    @org.testng.annotations.Test public void pass() {}
                }
            """
            file("src/test/java/BazTest.java") << """
                public class BazTest {
                    @org.testng.annotations.Test public void pass() {}
                }
            """
    
            file("suite.xml") << """<?xml version="1.0" encoding="UTF-8"?>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractSourceIncrementalCompilationIntegrationTest.groovy

            source("public class Other {}")
    
            file("src/test/${languageName}/BazTest.${languageName}") << "public class BazTest {}"
    
            outputs.snapshot { run "compileTest${language.capitalizedName}" }
    
            when:
            file("src/test/${languageName}/BazTest.${languageName}").text = "public class BazTest { String change; }"
            unusedClass.delete()
    
            run "compileTest${language.capitalizedName}"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/AbstractTestNGFilteringIntegrationTest.groovy

                ${testFrameworkImports}
                public class BarTest {
                    @Test public void pass() {}
                }
            """
            file("src/test/java/BazTest.java") << """
                ${testFrameworkImports}
                public class BazTest {
                    @Test public void pass() {}
                }
            """
        }
    
        @Issue("GRADLE-3112")
        def "suites can be filtered from the command-line"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testng/TestNGFilteringIntegrationTest.groovy

                ${testFrameworkImports}
                public class BarTest {
                    @Test public void pass() {}
                }
            """
            file("src/test/java/BazTest.java") << """
                ${testFrameworkImports}
                public class BazTest {
                    @Test public void pass() {}
                }
            """
        }
    
        @Issue("GRADLE-3112")
        def "suites can be filtered from the command-line"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    //
    // INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three"));
    //
    // This instantiates tests from test case BazTest each with values 1, 2, 3.5.
    // The exact type of values will depend on the type of parameter in BazTest.
    //
    // INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5));
    //
    // Currently, Values() supports from 1 to $n parameters.
    //
    $range i 1..n
    $for i [[
    $range j 1..i
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    //
    // INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three"));
    //
    // This instantiates tests from test case BazTest each with values 1, 2, 3.5.
    // The exact type of values will depend on the type of parameter in BazTest.
    //
    // INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5));
    //
    // Currently, Values() supports from 1 to $n parameters.
    //
    $range i 1..n
    $for i [[
    $range j 1..i
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    // INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three"));
    //
    // This instantiates tests from test case BazTest each with values 1, 2, 3.5.
    // The exact type of values will depend on the type of parameter in BazTest.
    //
    // INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5));
    //
    // Currently, Values() supports from 1 to 50 parameters.
    //
    template <typename T1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 74.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h

    //
    // INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three"));
    //
    // This instantiates tests from test case BazTest each with values 1, 2, 3.5.
    // The exact type of values will depend on the type of parameter in BazTest.
    //
    // INSTANTIATE_TEST_CASE_P(FloatingNumbers, BazTest, Values(1, 2, 3.5));
    //
    // Currently, Values() supports from 1 to 50 parameters.
    //
    template <typename T1>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 74.1K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractDefaultTestOrderingIntegrationTest.groovy

            addEmptyTestClass("ACTest")
            addEmptyTestClass("AÄTest")
            addEmptyTestClass("AZTest")
            addEmptyTestClass("AbTest")
    
            String expectedTestMessages = """
    executed Test ${maybeParentheses('test')}(AATest)
    executed Test ${maybeParentheses('test')}(ACTest)
    executed Test ${maybeParentheses('test')}(AZTest)
    executed Test ${maybeParentheses('test')}(AbTest)
    executed Test ${maybeParentheses('test')}(AdTest)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.5K bytes
    - Viewed (0)
Back to top