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
Methods, annotated with @(Before|After)Suite and @(Before|After)Test are not executed before/after each child class. I mean i expected each child class to contribute invocations of the corresponding methods.
If the above expectations are correct then there is another issue: those methods are executed with wrong threads. This can be the cause of visibility/concurrency problems.
The text was updated successfully, but these errors were encountered:
Code, demonstrating issues:
testng.xml:
After running tests the logger output looks like this:
I see two problems here:
@(Before|After)Suite
and@(Before|After)Test
are not executed before/after each child class. I mean i expected each child class to contribute invocations of the corresponding methods.The text was updated successfully, but these errors were encountered: