Skip to content
This repository was archived by the owner on Aug 19, 2025. It is now read-only.
This repository was archived by the owner on Aug 19, 2025. It is now read-only.

Create a new annotation that bubbles up @Execution, @ExtendWith, and @SpringBootTest #7

Description

@kgress

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

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions