Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for taskMethodInvocation (0.28 sec)

  1. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmProjectInitDescriptor.java

                    buildScriptBuilder.testRuntimeOnlyDependency(null, BuildInitDependency.of("org.junit.platform:junit-platform-launcher"));
                    buildScriptBuilder.taskMethodInvocation(
                        "Use JUnit Platform for unit tests.",
                        "test", "Test", "useJUnitPlatform");
                    break;
                case TESTNG:
                    buildScriptBuilder
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 19:14:24 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/JvmGradlePluginProjectInitDescriptor.java

                    b.methodInvocation(null, "useJUnitPlatform");
                });
                buildScriptBuilder.taskMethodInvocation("Run the functional tests as part of `check`", "check", "Task", "dependsOn", functionalTest);
                buildScriptBuilder.taskMethodInvocation("Use JUnit Jupiter for unit tests.", "test", "Test", "useJUnitPlatform");
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderKotlinTest.groovy

                    b.propertyAssignment("Define the application name", "applicationName", "My Application", true)
                }
                .taskMethodInvocation("Use TestNG", "test", "Test", "useTestNG")
                .propertyAssignment(null, "cathedral", 42)
                .methodInvocation(null, "cathedral")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  4. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/plugins/internal/BuildScriptBuilderGroovyTest.groovy

                    b.propertyAssignment("Define the application name", "applicationName", "My Application", true)
                }
                .taskMethodInvocation("Use TestNG", "test", "Test", "useTestNG")
                .propertyAssignment(null, "cathedral", 42)
                .methodInvocation(null, "cathedral")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 18 14:16:33 UTC 2023
    - 16.2K bytes
    - Viewed (0)
  5. platforms/software/build-init/src/main/java/org/gradleinternal/buildinit/plugins/internal/maven/Maven2Gradle.java

                dep instanceof ExternalDependency && "org.testng".equals(((ExternalDependency) dep).getGroupId()) && "testng".equals(((ExternalDependency) dep).getModule())
            );
            if (testng) {
                builder.taskMethodInvocation(null, "test", "Test", "useTestNG");
            }
        }
    
        private Set<MavenProject> modules(Set<MavenProject> projects, boolean incReactors) {
            return projects.stream().filter(project -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Mar 14 15:23:34 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

                    builder.taskMethodInvocation("Include " + suite.getName() + " as part of the check lifecycle", "check", Task.class.getSimpleName(), "dependsOn", suiteDependedUpon);
                } else {
                    final ExpressionValue namedMethod = new MethodInvocationExpression(testSuites, "named", singletonList(new StringValue(suite.getName())));
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
Back to top