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

com.github.mahnkong.testutils.byteman.BytemanRuleFile Maven / Gradle / Ivy

Go to download

This project contains functionality allowing the usage of byteman in JUnit tests by providing JUnit rules (install byteman agent, load/unload of the rules) and some annotations (byteman setup for the tests).

There is a newer version: 1.0.3
Show newest version
package com.github.mahnkong.testutils.byteman;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.annotation.Target;

/**
 * Created by mahnkong on 21.03.15.
 */
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.TYPE, ElementType.METHOD})
public @interface BytemanRuleFile {
    String filepath();
    boolean verbose() default false;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy