You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To gain full control of test execution order, the current implementation is to run test "separately". There are at least two drawbacks of this method:
@BeforAll/@AfterAll method will execute multiple times. This violates the intention of it, i.e., that method should only run once for all tests in the same test class. And it could lead to some unexpected results.
It brings some performance overhead. But this issue is minor.
The text was updated successfully, but these errors were encountered:
To gain full control of test execution order, the current implementation is to run test "separately". There are at least two drawbacks of this method:
@BeforAll/@AfterAll
method will execute multiple times. This violates the intention of it, i.e., that method should only run once for all tests in the same test class. And it could lead to some unexpected results.The text was updated successfully, but these errors were encountered: