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

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

      
    
Rootfs path

      
    
Size
611 (611 bytes)
MD5
b7c9baf6d89c9af4242ade4389124f7f
SHA1
93147cadd4789cd48fed466b6602a77bfffd304e
SHA256
ae5e8cf58fe1e063699051363e4f318e42d23491803970b6967b8002e475e473
SHA512

      
    
SHA1_git
416c99d3b59df6412aebc90d8e77f89536ea49c9
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
AllTests.java | 611 bytes |

package org.junit.runners; import org.junit.internal.runners.SuiteMethod; /** * Runner for use with JUnit 3.8.x-style AllTests classes * (those that only implement a static <code>suite()</code> * method). For example: * <pre> * &#064;RunWith(AllTests.class) * public class ProductTests { * public static junit.framework.Test suite() { * ... * } * } * </pre> * * @since 4.0 */ public class AllTests extends SuiteMethod { /** * Only called reflectively. Do not use programmatically. */ public AllTests(Class<?> klass) throws Throwable { super(klass); } }