com.github.mahnkong.testutils.byteman.IgnoreBytemanClassRuleFile 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 19.04.15.
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.METHOD)
public @interface IgnoreBytemanClassRuleFile {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy