# Summary: We should create a new annotation that allows users implementing scaffold to have just one annotation instead of three on their BaseTest file. E.G, on an implementing project "AutomationCodeBase" : ``` @Execution(ExecutionMode.CONCURRENT) @ExtendWith(SpringExtension.class) @SpringBootTest( webEnvironment = SpringBootTest.WebEnvironment.NONE, classes = { AutomationCodeBaseConfig.class, ScaffoldConfig.class } ) public class BaseTest extends ScaffoldBaseTest { ... } ``` This is a bit heavy and having a single annotation that bubbles all of these configurations up would be helpful. # A/C: * Create a new Spring annotation that includes the execution mode, the SpringExtension, and the SpringBootTest configuration annotations
Summary:
We should create a new annotation that allows users implementing scaffold to have just one annotation instead of three on their BaseTest file.
E.G, on an implementing project "AutomationCodeBase" :
This is a bit heavy and having a single annotation that bubbles all of these configurations up would be helpful.
A/C: