@Retention(value=CLASS)
@Target(value=FIELD)
public @interface BindValue
ApplicationComponent
. Example usage:
public class FooTest{
...
@BindValue Bar boundBar = new Bar();
...
}
Here boundBar
will be accessible to the entire application for your test.