com.github.mahnkong.testutils.byteman.BytemanRuleFile Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of byteman-junit-rules Show documentation
Show all versions of byteman-junit-rules Show documentation
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).
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