Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 5,440 for cunit (0.04 sec)

  1. platforms/documentation/docs/src/snippets/dependencyManagement/customizingResolution-resolutionStrategy/tests/releasable-unit.sample.conf

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 31 bytes
    - Viewed (0)
  2. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.pom.sha1

    Tamas Cservenak <******@****.***> 1703012935 +0100
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 40 bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/testFixtures/resources/META-INF/services/org.junit.platform.engine.TestEngine

    Bálint Hegyi <******@****.***> 1695636814 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 61 bytes
    - Viewed (0)
  4. .github/workflows/extract-unit-test-split.jq

    Stefan Wolf <******@****.***> 1633938695 +0200
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 11 08:08:26 UTC 2021
    - 171 bytes
    - Viewed (0)
  5. maven-model/src/test/java/org/apache/maven/model/OrganizationTest.java

     * under the License.
     */
    package org.apache.maven.model;
    
    import org.junit.jupiter.api.Test;
    
    import static org.junit.jupiter.api.Assertions.assertEquals;
    import static org.junit.jupiter.api.Assertions.assertFalse;
    import static org.junit.jupiter.api.Assertions.assertNotNull;
    import static org.junit.jupiter.api.Assertions.assertTrue;
    
    /**
     * Tests {@code Organization}.
     *
     */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  6. 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)
  7. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/scalaapplication/multi/list/junit5/LinkedListTest.scala.template

    ${fileComment.multilineComment}
    ${packageDecl.statement}
    import org.junit.jupiter.api.Test
    
    import org.junit.jupiter.api.Assertions._
    
    class LinkedListTest {
        @Test def testConstructor(): Unit = {
            val list = new LinkedList()
            assertEquals(0, list.size())
        }
    
        @Test def testAdd(): Unit = {
            val list = new LinkedList()
    
            list.add("one")
            assertEquals(1, list.size())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-jvm-test-suite/src/integTest/groovy/org/gradle/testing/testsuites/TestSuitesTestFrameworkIntegrationTest.groovy

                    integTest(JvmTestSuite) // implicitly uses JUnit Jupiter
                }
            }
    
            tasks.named('check') {
                dependsOn testing.suites.integTest
            }
            """
    
            file('src/test/java/example/UnitTest.java') << '''
                package example;
    
                import org.junit.Assert;
                import org.junit.Test;
    
                public class UnitTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/src/test/java/org/gradle/kotlin/dsl/samples/androidstudio/ExampleUnitTest.kt

    package org.gradle.kotlin.dsl.samples.androidstudio
    
    import org.junit.Test
    
    import org.junit.Assert.*
    
    /**
     * Example local unit test, which will execute on the development machine (host).
     *
     * See [testing documentation](http://d.android.com/tools/testing).
     */
    class ExampleUnitTest {
        @Test
        fun addition_isCorrect() {
            assertEquals(4, 2 + 2)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 368 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/src/test/java/org/gradle/kotlin/dsl/samples/androidstudio/ExampleUnitTest.kt

    package org.gradle.kotlin.dsl.samples.androidstudio
    
    import org.junit.Test
    
    import org.junit.Assert.*
    
    /**
     * Example local unit test, which will execute on the development machine (host).
     *
     * See [testing documentation](http://d.android.com/tools/testing).
     */
    class ExampleUnitTest {
        @Test
        fun addition_isCorrect() {
            assertEquals(4, 2 + 2)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 368 bytes
    - Viewed (0)
Back to top