Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,161 for cunit (0.05 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/CUnit.h

    #ifndef CU_BOOL
      /** Boolean type for CUnit use. */
      #define CU_BOOL int
    #endif
    
    #ifndef CU_TRUE
      /** Boolean TRUE for CUnit use. */
      #define CU_TRUE 1
    #endif
    
    #ifndef CU_FALSE
      /** Boolean FALSE for CUnit use. */
      #define CU_FALSE 0
    #endif
    
    #ifndef CU_UNREFERENCED_PARAMETER
      /** Consistent approach to referencing unused parameters. */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.6K bytes
    - Viewed (0)
  2. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/cunit/CUnitIntegrationTest.groovy

        def prebuiltDir = buildContext.getSamplesDir().file("native-binaries/cunit/groovy/libs")
        def prebuiltPath = TextUtil.normaliseFileSeparators(prebuiltDir.path)
        def app = new CHelloWorldApp()
    
        def setup() {
            prebuiltDir.file("cunit/2.1-2/lib/${toolChain.unitTestPlatform}/${cunitLibName}").assumeExists()
            buildFile << """
    apply plugin: 'cunit-test-suite'
    
    model {
        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 17K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestDB.h

    } CU_Test;
    typedef CU_Test* CU_pTest;    /**< Pointer to a CUnit test case. */
    
    /*-----------------------------------------------------------------
     *  CU_Suite, CU_pSuite
     *-----------------------------------------------------------------*/
    /** CUnit suite data type.
     *  CU_Suite is a linked list of CU_Test containers.  Each suite has 
     *  a name, a count of registered unit tests, and a flag for whether 
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/TestRun.h

                                              CU_BOOL bFatal);
    /**< 
     *  Assertion implementation function.
     *  All CUnit assertions reduce to a call to this function.  It should only be
     *  called during an active test run (checked by assertion).  This means that CUnit
     *  assertions should only be used in registered test functions during a test run.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 22K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/integTest/groovy/org/gradle/nativeplatform/NativeDependentComponentsReportIntegrationTest.groovy

                     \\--- utilTest:cUnitExe (t)
    
                libTest - Components that depend on Google test suite 'libTest'
                \\--- libTest:googleTestExe (t)
    
                utilTest - Components that depend on Cunit test suite 'utilTest'
                \\--- utilTest:cUnitExe (t)
    
                (t) - Test suite binary
                """.stripIndent()
    
            where:
            option          | _
            '--all'         | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 24K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/img/nativeDependents.graphml

                  <y:SmartNodeLabelModel distance="4.0"/>
                </y:LabelModel>
                <y:ModelParameter>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/dsl/dsl.xml

                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.test.NativeTestSuiteSpec</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.test.cunit.CUnitTestSuiteSpec</td>
                </tr>
                <tr>
                    <td>org.gradle.nativeplatform.test.googletest.GoogleTestTestSuiteSpec</td>
                </tr>
                <tr>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 15:00:02 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/resources/org/gradle/api/internal/artifacts/ivyservice/modulecache/ModuleMetadataSerializerTest/pom/junit-4.12.pom

        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.12</version>
    
        <name>JUnit</name>
        <description>JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.</description>
        <url>http://junit.org</url>
        <inceptionYear>2002</inceptionYear>
        <organization>
            <name>JUnit</name>
            <url>http://www.junit.org</url>
        </organization>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom

        <modelVersion>4.0.0</modelVersion>
    
        <groupId>junit</groupId>
        <artifactId>junit</artifactId>
        <version>4.13.1</version>
    
        <name>JUnit</name>
        <description>JUnit is a unit testing framework for Java, created by Erich Gamma and Kent Beck.</description>
        <url>http://junit.org</url>
        <inceptionYear>2002</inceptionYear>
        <organization>
            <name>JUnit</name>
            <url>http://www.junit.org</url>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 24.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/img/cpp-unit-test-configurations.png

    cpp-unit-test-configurations.png...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11K bytes
    - Viewed (0)
Back to top