ttomcat-1778514358873.zip-extract/_dependencies/maven/junit_junit-4.13.2/org/junit/TestCouldNotBeSkippedException.java

Path
ttomcat-1778514358873.zip-extract/_dependencies/maven/junit_junit-4.13.2/org/junit/TestCouldNotBeSkippedException.java
Status
scanned
Type
file
Name
TestCouldNotBeSkippedException.java
Extension
.java
Programming language
Java
Mime type
text/plain
File type
ASCII text
Tag

      
    
Rootfs path

      
    
Size
715 (715 bytes)
MD5
ceb7cb51f00c73c33d3870cb7dff8ea5
SHA1
d2e147cb5b7bae83ecd1a520f7daa2b0f11b2324
SHA256
ca576604493ebd3cd08367071a0e413783d95d297892c1daf48554e28fd236bb
SHA512

      
    
SHA1_git
4804493290ef1e05daaa4940e09c35120f8f9ba8
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
TestCouldNotBeSkippedException.java | 715 bytes |

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); } }