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

com.mars.core.annotation.MarsTest Maven / Gradle / Ivy

There is a newer version: 3.3.3
Show newest version
package com.mars.core.annotation;

import java.lang.annotation.*;

@Target(ElementType.TYPE)
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface MarsTest {

    /**
     * main方法所在的类
     * @return 类
     */
    Class startClass();

    /**
     * 指定使用哪个配置文件
     * @return 配置环境
     */
    String config() default "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy