org.test4j.junit.annotations
注释类型 ClazFinder.BaseType


public static @interface ClazFinder.BaseType


可选元素摘要
 Class<?>[] excludes
          The excludedBaseTypes method filters all test classes to be run by one or several given base types, i.e. only those classes will be run which do not extend any of the base types.
 Class<?>[] includes
          The baseTypes method filters all test classes to be run by one or several given base types, i.e. only those classes will be run which extend one of the base types.
 

includes

public abstract Class<?>[] includes
The baseTypes method filters all test classes to be run by one or several given base types, i.e. only those classes will be run which extend one of the base types. Default is Object.class.
运行继承指定基类的测试

默认值:
java.lang.Object.class

excludes

public abstract Class<?>[] excludes
The excludedBaseTypes method filters all test classes to be run by one or several given base types, i.e. only those classes will be run which do not extend any of the base types. Default is Object.class.
不运行继承指定基类的测试

默认值:
{}


Copyright © 2013. All rights reserved.