Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for getSuites (0.21 sec)

  1. platforms/ide/ide-plugins/src/main/java/org/gradle/plugins/ide/eclipse/EclipsePlugin.java

                TestingExtension testing = project.getExtensions().getByType(TestingExtension.class);
                ExtensiblePolymorphicDomainObjectContainer<TestSuite> suites = testing.getSuites();
                suites.withType(JvmTestSuite.class).configureEach(jvmTestSuite -> {
                    // jvm test suite source sets are marked as test on the Eclipse classpath
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 23.5K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-java/src/main/java/org/gradle/api/plugins/JavaPlugin.java

            ObjectFactory objectFactory
        ) {
            TestingExtension testing = extensions.findByType(TestingExtension.class);
            final NamedDomainObjectProvider<JvmTestSuite> testSuite = testing.getSuites().register(JvmTestSuitePlugin.DEFAULT_TEST_SUITE_NAME, JvmTestSuite.class, suite -> {
                final SourceSet testSourceSet = suite.getSources();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

         */
        public BuildScriptBuilder fileComment(String comment) {
            headerCommentLines.addAll(splitComment(comment));
            return this;
        }
    
        public List<SuiteSpec> getSuites() {
            return new ArrayList<>(block.testing.suites);
        }
    
        private static List<String> splitComment(String comment) {
            return Splitter.on("\n").splitToList(comment.trim());
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.tasks.testing.testng.TestNGOptions.getSuiteXmlWriter()> does not have raw return type assignable to org.gradle.api.provider.Property in (TestNGOptions.java:0)
    Method <org.gradle.api.tasks.testing.testng.TestNGOptions.getSuites(java.io.File)> does not have raw return type assignable to org.gradle.api.provider.Provider in (TestNGOptions.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  5. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            }
    
            @Override
            public List<IMethodInstance> intercept(List<IMethodInstance> methods, ITestContext context) {
                ISuite suite = context.getSuite();
                List<IMethodInstance> filtered = new LinkedList<IMethodInstance>();
                for (IMethodInstance candidate : methods) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestResultProcessorAdapter.java

            synchronized (lock) {
                Object id = idGenerator.generateId();
                testInternal = new DefaultTestSuiteDescriptor(id, iTestContext.getName());
                parentId = suiteId.get(iTestContext.getSuite());
                xmlTestIds.put(iTestContext.getCurrentXmlTest(), id);
                testId.put(iTestContext, testInternal.getId());
                for (ITestNGMethod method : iTestContext.getAllTestMethods()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    ParallelComputer(boolean, boolean); public static org.junit.runner.Computer classes(); public static org.junit.runner.Computer methods(); private static org.junit.runner.Runner parallelize(org.junit.runner.Runner); public org.junit.runner.Runner getSuite(org.junit.runners.model.RunnerBuilder, Class[]) throws org.junit.runners.model.InitializationError; protected org.junit.runner.Runner getRunner(org.junit.runners.model.RunnerBuilder, Class) throws Throwable; } org/junit/experimental/categories/I...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Dec 19 19:08:55 UTC 2023
    - 373.7K bytes
    - Viewed (0)
Back to top