Peter Penzov
Peter Penzov

Reputation: 1678

Run JUnit5 tests in strict order

I want to use JUnit5 for tests but looks like @ScenarioTest is not yet implemented.

<dependency>
    <groupId>org.junit.jupiter</groupId>
    <artifactId>junit-jupiter-engine</artifactId>
    <version>5.2.0</version>
    <scope>test</scope>
</dependency>

How I can run tests in strict order?

Upvotes: 2

Views: 722

Answers (1)

Sormuras
Sormuras

Reputation: 9059

Not yet, but with 5.4, perhaps: https://github.com/junit-team/junit5/issues/13

Upvotes: 2

Related Questions