Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 528 for TestTd (0.17 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

            '''
    
            expect:
            succeeds 'assertActionExecutionOrder'
        }
    
        def "can execute #description during task creation action execution"() {
            createDirs("nested")
            settingsFile << "include 'nested'"
            buildFile << """
                tasks.create("foo") {
                    ${code}
                }
            """
    
            expect:
            succeeds "foo"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/files/src/test/groovy/org/gradle/internal/file/FileHierarchySetTest.groovy

            expect:
            rootsOf(from([
                "/tulry/nested-cli/nested-cli-nested/buildSrc",
                "/tulry/nested-cli/buildSrc/buildSrc",
                "/tulry/nested/buildSrc"
            ].collect({ new File(it) }))) == [
                "/tulry/nested-cli/nested-cli-nested/buildSrc",
                "/tulry/nested-cli/buildSrc/buildSrc",
                "/tulry/nested/buildSrc"
            ]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:38 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/builder/testdata/http/extended-allow-full-rule-out.yaml

                                valueMatchers:
                                - stringMatch:
                                    exact: nested
                                - stringMatch:
                                    prefix: nested-prefix-
                                - stringMatch:
                                    suffix: -suffix-nested
                                - stringMatch:
                                    safeRegex:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 03 18:02:42 UTC 2024
    - 39K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/api/internal/project/DefaultProjectSpec.groovy

            child2.identityPath == Path.path(":child1:child2")
    
            nestedRootProject.toString() == "project ':nested'"
            nestedRootProject.displayName == "project ':nested'"
            nestedRootProject.path == ":"
            nestedRootProject.buildTreePath == ":nested"
            nestedRootProject.identityPath == Path.path(":nested")
    
            nestedChild1.toString() == "project ':nested:child1'"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/LambdaInputsIntegrationTest.groovy

        def setup() {
            expectReindentedValidationMessage()
        }
    
        def "implementation of nested property in Groovy build script is tracked"() {
            setupTaskClassWithActionProperty()
            buildFile << """
                task myTask(type: TaskWithActionProperty) {
                    action = ${originalImplementation}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 09:08:49 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  6. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/results/StateTrackingTestResultProcessorTest.groovy

            def suite = new DefaultTestSuiteDescriptor("suiteId", "FastTests");
            def test = new DefaultTestDescriptor("testId", "DogTest", "shouldBarkAtStrangers");
    
            when:
            adapter.started(suite, new TestStartEvent(100L))
            adapter.started(test, new TestStartEvent(100L, 'suiteId'))
            adapter.completed('testId', new TestCompleteEvent(200L, ResultType.SKIPPED))
            adapter.completed('suiteId', new TestCompleteEvent(200L))
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 14.6K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/CrossVersionPerformanceTestRunner.groovy

        }
    
        CrossVersionPerformanceResults run() {
            assumeShouldRun()
    
            def results = new CrossVersionPerformanceResults(
                testClass: testClassName,
                testId: testId,
                previousTestIds: previousTestIds.collect { it.toString() }, // Convert GString instances
                testProject: testProject,
                tasks: tasksToRun.collect { it.toString() },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 14:54:56 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  8. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/DefaultSourceIncludesResolverTest.groovy

            macros << macro("TEST", '"test1.h"')
            macros << macro("IGNORE", '"broken"')
            macros << macro("NESTED", '"test2.h"')
            macros << macro("NESTED", '"test3.h"')
            macros << macro("TEST", "NESTED")
    
            expect:
            def result = resolve(include('TEST'))
            result.complete
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  9. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionLifecycleIntegrationTest.groovy

        }
    
        def "finalized file collection ignores later changes to nested file collections"() {
            buildFile """
                def nested = objects.fileCollection()
                def name = 'a'
                nested.from { name }
    
                def names = ['b', 'c']
                nested.from(names)
    
                def files = objects.fileCollection()
                files.from(nested)
                files.finalizeValue()
                name = 'ignore-me'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 10:55:07 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r70/TestDisplayNameJUnit5CrossVersionSpec.groovy

                }
            }
        }
    
        @TargetGradleVersion(">=8.8")
        def "reports display names of nested test classes"() {
            file("src/test/java/org/example/TestingAStackDemo.java") << """package org.example;
    
    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.DisplayName;
    import org.junit.jupiter.api.Nested;
    import org.junit.jupiter.api.Test;
    
    import java.util.EmptyStackException;
    import java.util.Stack;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top