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

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

      
    
Rootfs path

      
    
Size
925 (925 bytes)
MD5
efa5ff463066595595dae18d4ee9521a
SHA1
f1d663aff614f3e97d7bfd64d86ecd277071aea4
SHA256
bd58631bb74049f7f9f99d672a5e7fdbe13d7e8c7160e8f3584bbfb7cfc98f81
SHA512

      
    
SHA1_git
e8470c9dd1c8a924dbeddb0b1a8dc1db9a918c68
Is binary

      
    
Is text
True
Is archive

      
    
Is media

      
    
Is legal

      
    
Is manifest

      
    
Is readme

      
    
Is top level

      
    
Is key file

      
    
OrderWith.java | 925 bytes |

package org.junit.runner; import java.lang.annotation.ElementType; import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; import org.junit.runner.manipulation.Ordering; import org.junit.validator.ValidateWith; /** * When a test class is annotated with <code>&#064;OrderWith</code> or extends a class annotated * with <code>&#064;OrderWith</code>, JUnit will order the tests in the test class (and child * test classes, if any) using the ordering defined by the {@link Ordering} class. * * @since 4.13 */ @Retention(RetentionPolicy.RUNTIME) @Target(ElementType.TYPE) @Inherited @ValidateWith(OrderWithValidator.class) public @interface OrderWith { /** * Gets a class that extends {@link Ordering}. The class must have a public no-arg constructor. */ Class<? extends Ordering.Factory> value(); }