Automatically assign @Tags for each parameterized test e.g.
@Values("foo", "bar") @AutoTags unittest { ... } // there are now two unit tests, one for "foo" with tag "foo" // and one for "bar" with tag "bar"
See Implementation
Automatically assign @Tags for each parameterized test e.g.