setUp and tearDown for Scenrio outline (cucumber-jvm)
问题 i'm using scenario outline in my code and wanted to execute some code before the start of scenario outline and some code after the scenario outline execution has completed. I know there are @Before and @After annotations in cucumber but these gets executed before and after every scneario. So if I have a scenario outline and 3 rows of example data then @Before and @After will be executed each of then i.e. total 3 times each. But I want to execute it only once, @Before scenario outline and