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

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

      
    
Rootfs path

      
    
Size
938 (938 bytes)
MD5
c3ce44bcb96253c85a0c8e6bd9bccf36
SHA1
2bc617029b9f11c15423f497b0648a8452c05ed4
SHA256
8aa2d062383f2a4a8faf25ea71b89ac8d0ea401c8853508d2140b169e5a64f79
SHA512

      
    
SHA1_git
28eafb3a10509df36c6565e5f4f563e0ad0f6966
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
JUnit4.java | 938 bytes |

package org.junit.runners; import org.junit.runners.model.InitializationError; import org.junit.runners.model.TestClass; /** * Aliases the current default JUnit 4 class runner, for future-proofing. If * future versions of JUnit change the default Runner class, they will also * change the definition of this class. Developers wanting to explicitly tag a * class as a JUnit 4 class should use {@code @RunWith(JUnit4.class)}, not, * for example in JUnit 4.5, {@code @RunWith(BlockJUnit4ClassRunner.class)}. * This is the only way this class should be used--any extension that * depends on the implementation details of this class is likely to break * in future versions. * * @since 4.5 */ public final class JUnit4 extends BlockJUnit4ClassRunner { /** * Constructs a new instance of the default runner */ public JUnit4(Class<?> klass) throws InitializationError { super(new TestClass(klass)); } }