I’ve seen lots of examples of tests like:
/** * My test description. * * @group mymodule */ class MyModuleTest extends KernelTestBase { }
Specifically, asking about @group mymodule
– I’m calling this an annotation, but I feel like that might not be the right term. What other information can I set there? Can I set a weight so that the tests in my group are executed in a set order? Maybe that example doesn’t make much sense, but I can’t find information about what’s allowed / useful there.
What can I put there? or, more importantly, where is that information defined?