Reputation: 1678
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
Reputation: 9059
Not yet, but with 5.4, perhaps: https://github.com/junit-team/junit5/issues/13
Upvotes: 2