ContributionsMost RecentMost LikesSolutionsData provider public class Provider { @DataProvider (name = "data-provider") public Object[][] pMethod(){ return new Object[][] {{2, 3 , 5}, {5, 7, 9}}; } @Test (dataProvider = "data-provider") public void myTest (int a, int b, int result) { int sum = a + b; Assert.assertEquals(result, sum); } } like this you can see there are 2 Testcases but how to integrate it with 2 different zephyr key as there my @test is just one Can u tell me the way to integrate data provider test cases with zephyr key in above example i need to create 2 Testcase in zephyr as myTest_DTR_234 and myTest_DTR_235 but in code i can just mention one, please help. Zephyr scale folder I dont want my employees to create test case in none folder, means it should be in some folder, how can i achieve this? Re: Test Execution annotation for scala language For executing junit we need to have xml report, right? I am taking about that xml report, for that xml report i dont want to use my zephyr key in testname, i want to have some annotation for good practice. like in https://bitbucket.org/smartbeartm4j/tm4j-junit-integration/src/master/ this is about java, but i am looking for same for scala lamguage Test Execution annotation for scala language I am writting test in scala language, getting test report but i dont want to add zephyr key in my test name, i want to use annotaions instead, but not able to find which annotation we should use for scala language, please help for JUnit testing.