Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for testDisplayName (0.17 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                                operationDisplayName "a class display name"
                                testDisplayName "a class display name"
                                test("test()") {
                                    operationDisplayName "and a test display name"
                                    testDisplayName "and a test display name"
                                }
                            }
                        }
                    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/TestLauncherSpec.groovy

                }
                throw err.build()
            }
    
            void validate(String expectedOperationDisplayName) {
                if (testDisplayName != null && parent.respondsTo("getTestDisplayName")) {
                    assert testDisplayName == ((TestOperationDescriptor) parent).testDisplayName
                }
                if (operationDisplayName != null) {
                    assert operationDisplayName == normalizeExecutor(parent.displayName)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/HtmlTestExecutionResult.groovy

                html.select(cssSelector).each {
                    def testDisplayName = it.textNodes().first().wholeText.trim()
                    def testName = hasMethodNameColumn() ? it.nextElementSibling().text() : testDisplayName
                    def failureMessage = getFailureMessages(testName)
                    def testCase = testCase(testName, testDisplayName, failureMessage)
                    testsExecuted << testCase
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/DefaultConfigurableFileTreeTest.groovy

            filtered.contains(included1)
            !filtered.contains(excluded1)
            !filtered.contains(ignored1)
        }
    
        def testDisplayName() {
            expect:
            fileTree.displayName == "directory '$testDir'".toString()
        }
    
        def canGetAndSetTaskDependencies() {
            def context = Mock(TaskDependencyResolveContext)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top