Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,690 for cunit (0.06 sec)

  1. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    source set should contain the cunit test files for the component under test. Source files can be located in the conventional location (`src/${component.name}Test/cunit`) or can be configured like any other source set.
    
    Gradle initialises the CUnit test registry and executes the tests, utilising some generated CUnit launcher sources. Gradle will expect and call a function with the signature `void gradle_cunit_register()` that you can use to configure the actual CUnit suites and tests to execute....
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  2. 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)
  3. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.nativeplatform.test.cunit.tasks.GenerateCUnitLauncher.getHeaderDir()> does not have raw return type assignable to org.gradle.api.provider.Property in (GenerateCUnitLauncher.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.nativeplatform.test.cunit.CUnitTestSuiteBinarySpec.getComponent()> does not have raw return type assignable to org.gradle.api.provider.Provider in (CUnitTestSuiteBinarySpec.java:0)
    Method <org.gradle.nativeplatform.test.cunit.CUnitTestSuiteBinarySpec.getTestSuite()> does not have raw return type assignable to org.gradle.api.provider.Provider in (CUnitTestSuiteBinarySpec.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  5. maven-model-builder/src/test/resources/poms/depmgmt/junit-0.1.xml

        <modelVersion>4.1.0</modelVersion>
    
        <groupId>org.junit</groupId>
        <artifactId>bom</artifactId>
        <version>0.1</version>
        <packaging>pom</packaging>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.junit</groupId>
                    <artifactId>junit</artifactId>
                    <version>0.1</version>
                </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 724 bytes
    - Viewed (0)
  6. maven-model-builder/src/test/resources/poms/depmgmt/junit-0.2.xml

        <modelVersion>4.1.0</modelVersion>
    
        <groupId>org.junit</groupId>
        <artifactId>bom</artifactId>
        <version>0.2</version>
        <packaging>pom</packaging>
    
        <dependencyManagement>
            <dependencies>
                <dependency>
                    <groupId>org.junit</groupId>
                    <artifactId>junit</artifactId>
                    <version>0.2</version>
                </dependency>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Feb 01 16:25:04 UTC 2024
    - 724 bytes
    - Viewed (0)
  7. platforms/jvm/plugins-test-report-aggregation/src/integTest/groovy/org/gradle/api/plugins/TestReportAggregationPluginIntegrationTest.groovy

                    }
                """
                file("application/src/test/java/application/AdderTest.java").java """
                    package application;
    
                    import org.junit.Assert;
                    import org.junit.Test;
    
                    public class AdderTest {
                        @Test
                        public void testAdd() {
                            Adder adder = new Adder();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsTest.kt

            // given:
            val buildOperationRunner = mock<BuildOperationRunner> {
                on { call<Unit>(any()) } doReturn Unit
            }
            val stateFile = testDirectoryProvider.file("stateFile")
    
            // when:
            buildOperationRunner.withLoadOperation {
                LoadResult(stateFile, UUID.randomUUID().toString()) to Unit
            }
    
            // then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  9. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmProjectInitDescriptor.java

                    buildScriptBuilder.testRuntimeOnlyDependency(null, BuildInitDependency.of("org.junit.platform:junit-platform-launcher"));
    
                    buildScriptBuilder.taskMethodInvocation(
                        "Use JUnit Platform for unit tests.",
                        "test", "Test", "useJUnitPlatform");
                    break;
                default:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/build_init_plugin.adoc

    * `gradle init --type java-application --test-framework junit-jupiter`: Uses https://junit.org[JUnit Jupiter] for testing instead of JUnit 4
    * `gradle init --type java-application --test-framework spock`: Uses https://spockframework.org[Spock] for testing instead of JUnit 4
    * `gradle init --type java-application --test-framework testng`: Uses https://testng.org/doc/index.html[TestNG] for testing instead of JUnit 4
    
    
    [[sec:java_version_option]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 19.4K bytes
    - Viewed (0)
Back to top