Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for Suite (0.33 sec)

  1. maven-core/src/test/projects/lifecycle-executor/project-with-additional-lifecycle-elements/src/test/java/org/apache/maven/lifecycle/test/AppTest.java

         *
         * @param testName name of the test case
         */
        public AppTest( String testName )
        {
            super( testName );
        }
    
        /**
         * @return the suite of tests being tested
         */
        public static Test suite()
        {
            return new TestSuite( AppTest.class );
        }
    
        /**
         * Rigorous Test :-)
         */
        public void testApp()
        {
            assertTrue( true );
        }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Feb 03 09:12:28 GMT 2017
    - 657 bytes
    - Viewed (0)
  2. Jenkinsfile.s390x

                                junit testResults: '**/core-it-suite/target/surefire-reports/*.xml,**/core-it-support/**/target/surefire-reports/*.xml', allowEmptyResults: true
                                archiveDirs(stageId, ['core-it-suite-logs':'core-it-suite/target/test-classes',
                                                      'core-it-suite-reports':'core-it-suite/target/surefire-reports'])
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 7.7K bytes
    - Viewed (0)
  3. Jenkinsfile.its

            }
          }
        }
      }
      post {
        always {
          junit testResults: 'core-it-suite/target/surefire-reports/*.xml', allowEmptyResults: true
          script{
            currentBuild.description = "Build with Core Its branch:$ITS_BRANCH"
          }
          cleanWs()
        }
      }
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Dec 26 16:42:35 GMT 2021
    - 2.3K bytes
    - Viewed (0)
  4. CONTRIBUTING.md

    [code-style]: https://maven.apache.org/developers/conventions/code.html
    [cla]: https://www.apache.org/licenses/#clas
    [maven-wiki]: https://cwiki.apache.org/confluence/display/MAVEN/Index
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Oct 10 09:48:27 GMT 2021
    - 4.7K bytes
    - Viewed (0)
  5. .github/pull_request_template.md

     - [ ] In any other case, please file an [Apache Individual Contributor License Agreement](https://www.apache.org/licenses/icla.pdf).
    
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Dec 20 13:14:27 GMT 2022
    - 1.9K bytes
    - Viewed (0)
  6. .github/workflows/maven.yml

            if: failure() && matrix.os != 'windows-latest'
            with:
              name: ${{ github.run_number }}-integration-test-artifact-${{ matrix.os }}-${{ matrix.java }}
    Others
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  7. README.md

    [users-list]: https://maven.apache.org/mailing-lists.html
    [dev-ml-list]: https://www.mail-archive.com/******@****.***/
    [code-style]: http://maven.apache.org/developers/conventions/code.html
    [core-it]: https://maven.apache.org/core-its/core-it-suite/
    [building-maven]: https://maven.apache.org/guides/development/guide-building-maven.html
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  8. Jenkinsfile

                                        junit testResults: '**/core-it-suite/target/surefire-reports/*.xml,**/core-it-support/**/target/surefire-reports/*.xml', allowEmptyResults: true
                                        archiveDirs(stageId, ['core-it-suite-logs':'core-it-suite/target/test-classes',
                                                              'core-it-suite-reports':'core-it-suite/target/surefire-reports'])
                                    }
    Plain Text
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 8.4K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    model.Statement); public void evaluate() throws Throwable; } org/junit/runners/Suite.class package org.junit.runners; public synchronized class Suite extends ParentRunner { private final java.util.List runners; public static org.junit.runner.Runner emptySuite(); private static Class[] getAnnotatedClasses(Class) throws model.InitializationError; public void Suite(Class, model.RunnerBuilder) throws model.InitializationError; public void Suite(model.RunnerBuilder, Class[]) throws model.InitializationError; protected...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/internal/aether/LoggingRepositoryListener.java

            }
        }
    
        @Override
        public void artifactDescriptorInvalid(RepositoryEvent event) {
            // The exception stack trace is not really interesting here
            // but the message itself may be quite details and span multiple
            // lines with errors in it, so only display it at debug level.
            String msg = "The POM for {} is invalid, transitive dependencies (if any) will not be available: {}";
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 3.7K bytes
    - Viewed (0)
Back to top