@Retention(value=RUNTIME)
@Target(value=METHOD)
public @interface Setter
This annotation is a hint for the SetupGenerator:
- to treat the annotated method as setter method
Use this annotation to generate better readable tests. The generation prefers constructing objects
from constructor and setters over generic construction. With this annotation even setters with names that do
not follow the convention could be used.