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
Especially TestNG cannot run in parallel with JGiven using injected stages, due to its lifecycle strategy.
It would be nice to create a proxy for TestNG and by Extension JUnit5 to support those two testing frameworks more completely.
Trying to get around the parallel dataprovider limitation that JGiven has with its TestNG integration...
In my scenario class defined stage fields as following (without using the @ScenarioStage annotation, which we all know it does not work well with parallel dataproviders):
protectedThreadLocal<ElasticSearchFixtures<?>> elasticSearchFixtures = newThreadLocal<>();
// and similar for ElasticSearchActions and ElasticSearchVerifications stages
Do you have a more comprehensive sample? I am failing to understand, where these ElasticSearchActions and ElasticSearchVerifications are in the first place...
Are these supposed to be scenario states?
Do you have a more comprehensive sample? I am failing to understand, where these ElasticSearchActions and ElasticSearchVerifications are in the first place... Are these supposed to be scenario states?
see #1469 -- both are about how to use multiple stages in a parallel testing mode
Especially TestNG cannot run in parallel with JGiven using injected stages, due to its lifecycle strategy.
It would be nice to create a proxy for TestNG and by Extension JUnit5 to support those two testing frameworks more completely.
Follow-up for #829
The text was updated successfully, but these errors were encountered: