All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.taobao.hsf.junit.DelegateTo Maven / Gradle / Ivy

The newest version!
package com.taobao.hsf.junit;

import org.junit.runner.Runner;
import org.junit.runners.JUnit4;

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;

/**
 * @author bw on 10/29/15.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
@Inherited
public @interface DelegateTo {
    Class value() default JUnit4.class;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy