Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for TestCompilationFailureException (0.29 sec)

  1. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/TestCompilationFailureException.java

     * limitations under the License.
     */
    
    package org.gradle.internal.buildevents;
    
    import org.gradle.internal.exceptions.CompilationFailedIndicator;
    
    class TestCompilationFailureException extends Exception implements CompilationFailedIndicator {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 27 12:32:25 UTC 2023
    - 824 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/buildevents/BuildExceptionReporterTest.groovy

            def failure1 = new LocationAwareException(new TaskExecutionException(null, new TestNonGradleCauseException()), LOCATION, 42)
            def failure2 = new LocationAwareException(new TaskExecutionException(null, new TestCompilationFailureException()), LOCATION, 42)
            def failure3 = new RuntimeException("<error>")
            Throwable exception = new MultipleBuildFailures([failure1, failure2, failure3])
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 18.3K bytes
    - Viewed (0)
Back to top