Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 14 for SomeOtherTest (0.17 sec)

  1. platforms/documentation/docs/src/snippets/swift/testFiltering/kotlin/src/test/swift/SomeOtherTest.swift

    import XCTest
    
    class SomeOtherTest: XCTestCase {
        public static var allTests = [
            ("testQuickUiCheck", testQuickUiCheck),
            ("testQuickServerCheck", testQuickServerCheck)
        ]
        func testQuickUiCheck() {}
        func testQuickServerCheck() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 261 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/swift/testFiltering/groovy/src/test/swift/SomeOtherTest.swift

    import XCTest
    
    class SomeOtherTest: XCTestCase {
        public static var allTests = [
            ("testQuickUiCheck", testQuickUiCheck),
            ("testQuickServerCheck", testQuickServerCheck)
        ]
        func testQuickUiCheck() {}
        func testQuickServerCheck() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 261 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/testing/filtering/groovy/src/test/java/SomeOtherTest.java

    import org.junit.*;
    
    public class SomeOtherTest {
        @Test public void quickUiCheck() {}
        @Test public void quickServerCheck() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/testing/filtering/kotlin/src/test/java/SomeOtherTest.java

    import org.junit.*;
    
    public class SomeOtherTest {
        @Test public void quickUiCheck() {}
        @Test public void quickServerCheck() {}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 136 bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/AbstractJUnitTestListenerIntegrationTest.groovy

            containsLine(result.getOutput(), "START [Test class SomeOtherTest] [SomeOtherTest]")
            containsLine(result.getOutput(), "FINISH [Test class SomeOtherTest] [SomeOtherTest] [SUCCESS] [1]")
            containsLine(result.getOutput(), "START [Test ${maybeParentheses('pass')}(SomeOtherTest)] [${maybeParentheses('pass')}]")
            containsLine(result.getOutput(), "FINISH [Test ${maybeParentheses('pass')}(SomeOtherTest)] [${maybeParentheses('pass')}] [SUCCESS] [1] [null]")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4TestFrameworkIntegrationTest.groovy

                    }
                    @org.junit.Test
                    public void ${passingTestCaseName}() { }
                }
            """
            file('src/test/java/SomeOtherTest.java') << """
                public class SomeOtherTest {
                    @org.junit.Test
                    public void ${passingTestCaseName}() { }
                }
            """
        }
    
        @Override
        void createEmptyProject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/testFixtures/groovy/org/gradle/testing/AbstractTestFrameworkIntegrationTest.groovy

            outputContains "START Test Suite [SomeOtherTest] [SomeOtherTest]"
            outputContains "FINISH Test Suite [SomeOtherTest] [SomeOtherTest]"
            outputContains "START Test Case [SomeOtherTest] [$passingTestCaseName]"
            outputContains "FINISH Test Case [SomeOtherTest] [$passingTestCaseName] [SUCCESS] [1]"
    
            outputContains "START Test Suite [SomeTest] [SomeTest]"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  8. platforms/native/testing-native/src/integTest/groovy/org/gradle/nativeplatform/test/xctest/XCTestTestFrameworkIntegrationTest.groovy

        void renameTests() {
            def newTest = file("src/test/swift/NewTest.swift")
            file("src/test/swift/SomeOtherTest.swift").renameTo(newTest)
            newTest.text = newTest.text.replaceAll("SomeOtherTest", "NewTest")
            def linuxMain = file("src/test/swift/LinuxMain.swift")
            linuxMain.text = linuxMain.text.replaceAll("SomeOtherTest", "NewTest")
        }
    
        @Override
        String getTestTaskName() {
            return "xcTest"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  9. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/jupiter/JUnitJupiterTestFrameworkIntegrationTest.groovy

                    }
                    @org.junit.jupiter.api.Test
                    public void ${passingTestCaseName} { }
                }
            """
            file('src/test/java/SomeOtherTest.java') << """
                public class SomeOtherTest {
                    @org.junit.jupiter.api.Test
                    public void ${passingTestCaseName} { }
                }
            """
        }
    
        @Override
        void createEmptyProject() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4TestFilteringSamplesIntegrationTest.groovy

            run("test")
    
            then:
            def result = new DefaultTestExecutionResult(sample.dir)
            result.assertTestClassesExecuted("SomeIntegTest", "SomeOtherTest")
            result.testClass("SomeIntegTest").assertTestsExecuted("test1", "test2")
            result.testClass("SomeOtherTest").assertTestsExecuted("quickUiCheck")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.5K bytes
    - Viewed (0)
Back to top