Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 55 for unitText (0.29 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    class GTEST_API_ UnitTest {
     public:
      // Gets the singleton UnitTest object.  The first time this method
      // is called, a UnitTest object is constructed and returned.
      // Consecutive calls will return the same object.
      static UnitTest* GetInstance();
    
      // Runs all tests in this UnitTest object and prints the result.
      // Returns 0 if successful, or 1 otherwise.
      //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginIntegrationTest.groovy

                    sourceSets {
                        unitTest {
                        }
                    }
                    dependencies {
                        unitTestImplementation project(':main')
                    }
                }
            """
            file("main/src/main/java/Main.java") << """public class Main { }"""
            file("tests/src/unitTest/java/Test.java") << """public class Test { Main main = null; }"""
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestReportTaskIntegrationTest.groovy

            """.stripIndent()
    
            and:
            file("src/test/java/org/gradle/testing/UnitTest.java") << """
                $packageAndImportsWithCategory
                public class UnitTest {
                    @Test public void foo() {
                        System.out.println("org.gradle.testing.UnitTest#foo");
                    }
                }
            """.stripIndent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 16.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/cpp/cppUnitTest/kotlin/build.gradle.kts

    // tag::apply-plugin[]
    plugins {
        `cpp-unit-test`
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    unitTest {
        targetMachines = listOf(machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64)
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 301 bytes
    - Viewed (0)
  5. maven-core/src/test/resources/projects/project.xml

      <build>
        <nagEmailAddress>******@****.***</nagEmailAddress>
        <sourceDirectory>/sourceDirectory</sourceDirectory>
        <unitTestSourceDirectory>/unitTestSourceDirectory</unitTestSourceDirectory>
        <unitTest>
          <includes>
            <include>**/*Test.java</include>
          </includes>
          <excludes>
            <exclude>**/RepositoryTest.java</exclude>
            <exclude>**/JAXPTest.java</exclude>
          </excludes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 4.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/cpp/cppUnitTest/groovy/build.gradle

    // tag::apply-plugin[]
    plugins {
        id 'cpp-unit-test'
    }
    // end::apply-plugin[]
    
    // tag::configure-target-machines[]
    unitTest {
        targetMachines = [
            machines.linux.x86_64,
            machines.windows.x86, machines.windows.x86_64,
            machines.macOS.x86_64
        ]
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 312 bytes
    - Viewed (0)
  7. build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts

    Bo Zhang <******@****.***> 1715586208 +0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 07:43:28 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. maven-core/src/test/resources/projects/fully-populated-child.xml

      <build>
        <nagEmailAddress>******@****.***</nagEmailAddress>
        <sourceDirectory>/sourceDirectory</sourceDirectory>
        <unitTestSourceDirectory>/unitTestSourceDirectory</unitTestSourceDirectory>
        <unitTest>
          <includes>
            <include>**/*Test.java</include>
          </includes>
          <excludes>
            <exclude>**/RepositoryTest.java</exclude>
            <exclude>**/JAXPTest.java</exclude>
          </excludes>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 22:49:30 UTC 2007
    - 4.7K bytes
    - Viewed (0)
  9. platforms/software/platform-base/src/test/groovy/org/gradle/platform/base/binary/BaseBinarySpecTest.groovy

            def binary = create(SampleBinary, MySampleBinary, "unitTest", component)
    
            expect:
            binary.name == "unitTest"
            binary.projectScopedName == "sampleUnitTest"
            binary.displayName == "SampleBinary 'sample:unitTest'"
            binary.namingScheme.description == "sample binary 'sample:unitTest'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestVerificationFailureHandlingIntegrationTest.groovy

                import org.junit.jupiter.api.Test;
    
                import static org.junit.jupiter.api.Assertions.assertTrue;
    
                public class PassingUnitTest {
                    @Test
                    public void unitTest() {
                        assertTrue(true);
                    }
                }
            '''
        }
    
        /**
         * Cause the test VM to fail at startup by providing an invalid JVM argument.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top