I\'m using TestNG for Eclipse.
TestNG
Eclipse
Is it possible to give two data providers step by step to the same test-function?
I co
@DataProvider public Object[][] combinedDataProvider() { return Stream.of(dp1(), dp2()) .flatMap(Arrays::stream) .toArray(Object[][]::new); }