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
The text was updated successfully, but these errors were encountered:
dmtgrinevich
changed the title
L10N: add multithreading support
All tests fail when l10n.assertAll called in one of the tests while multithreading
Apr 5, 2023
@Test()
public void t1() {
...
L10N.assertAll();
}
@Test()
public void t2() {
...
L10N.assertAll();
}
@Test
public void t3() {
...
L10N.assertAll();
}
Imagine we launch them in one thread. If L10N.assertAll() in t1() method generate's assertion, than this assertion will be included in all other calls of L10N.assertAll() in t2() and t3() and those tests will fail even if no new assertions were found.
While multithreading the latest completed tests will include all assertions from earlier ones
No description provided.
The text was updated successfully, but these errors were encountered: