Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 480 for testOk (0.12 sec)

  1. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/core/src/test/swift/CoreTest.swift

    import XCTest
    
    class CoreTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
    
        func testOk() {
            print("hello from CoreTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 179 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/swift/testReport/groovy/core/src/test/swift/CoreTest.swift

    import XCTest
    
    class CoreTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
    
        func testOk() {
            print("hello from CoreTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 179 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/swift/testReport/groovy/util/src/test/swift/UtilTest.swift

    import XCTest
    
    class UtilTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
        func testOk() {
            print("hello from UtilTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 178 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/swift/testReport/kotlin/util/src/test/swift/UtilTest.swift

    import XCTest
    
    class UtilTest: XCTestCase {
        public static var allTests = [
            ("testOk", testOk)
        ]
        func testOk() {
            print("hello from UtilTest.")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 178 bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/JUnitOptionsIntegrationTest.groovy

    package com.example;
    import org.junit.Test;
    
    public class IncludedTest {
        @Test
        public void testOK() {
        }
    }
    """
            sourcePath.file("com/example/ExcludedTest.java") << """
    package com.example;
    import org.junit.Test;
    import org.junit.experimental.categories.Category;
    
    @Category(Exclude.class)
    public class ExcludedTest {
        @Test
        public void testOK() {
        }
    }
    """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/JUnitJupiterOptionsIntegrationTest.groovy

    package com.example;
    import org.junit.jupiter.api.Test;
    
    public class IncludedTest {
        @Test
        public void testOK() {
        }
    }
    """
            sourcePath.file("com/example/ExcludedTest.java") << """
    package com.example;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.Tag;
    
    @Tag("exclude")
    public class ExcludedTest {
        @Test
        public void testOK() {
        }
    }
    """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/testing/junitplatform-mix/kotlin/src/test/java/org/gradle/junitplatform/JUnit3Test.java

    package org.gradle.junitplatform;
    
    import junit.framework.TestCase;
    
    public class JUnit3Test extends TestCase {
        public void testOk() {
            System.out.println("Hello from JUnit 3!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 198 bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/testsuites/TestNGOptionsIntegrationTest.groovy

    package com.example;
    
    import org.testng.annotations.Test;
    
    public class IncludedTest {
        @Test
        public void testOK() {
        }
    }
    """
            sourcePath.file("com/example/ExcludedTest.java") << """
    package com.example;
    
    import org.testng.annotations.Test;
    
    public class ExcludedTest {
        @Test(groups = { "exclude" })
        public void testOK() {
        }
    }
    """
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/testing/junitplatform-mix/groovy/src/test/java/org/gradle/junitplatform/JUnit3Test.java

    package org.gradle.junitplatform;
    
    import junit.framework.TestCase;
    
    public class JUnit3Test extends TestCase {
        public void testOk() {
            System.out.println("Hello from JUnit 3!");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 198 bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm-infrastructure/src/testFixtures/groovy/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassProcessorData.groovy

        public void run(RunNotifier runNotifier) {
            // Run tests in 'parallel'
            Description test1 = Description.createTestDescription(type, 'broken')
            Description test2 = Description.createTestDescription(type, 'ok')
            runNotifier.fireTestStarted(test1)
            runNotifier.fireTestStarted(test2)
            runNotifier.fireTestFailure(new Failure(test1, failure.rawFailure))
            runNotifier.fireTestFinished(test2)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top