JUnit 4.13.2 Source Code Files

JUnit Source Code Files are provided in the source package file, junit-4.13.2-sources.jar.

You can browse JUnit Source Code files below:

✍: FYIcenter.com

org/junit/TestCouldNotBeSkippedException.java

package org.junit;

/**
 * Indicates that a test that indicated that it should be skipped could not be skipped.
 * This can be thrown if a test uses the methods in {@link Assume} to indicate that
 * it should be skipped, but before processing of the test was completed, other failures
 * occured.
 *
 * @see org.junit.Assume
 * @since 4.13
 */
public class TestCouldNotBeSkippedException extends RuntimeException {
    private static final long serialVersionUID = 1L;

    /** Creates an instance using the given assumption failure. */
    public TestCouldNotBeSkippedException(org.junit.internal.AssumptionViolatedException cause) {
        super("Test could not be skipped due to other failures", cause);
    }
}

org/junit/TestCouldNotBeSkippedException.java

 

Or download all of them as a single archive file:

File name: junit-4.13.2-sources.jar
File size: 234540 bytes
Release date: 2021-02-13
Download 

 

Download and Install junit-4.12.jar

Download and Install junit-4.13.2.jar

Download and Install JUnit (Java Unit) Testing

⇑⇑ FAQ for JUnit (Java Unit) Testing

2016-03-28, 11284👍, 0💬