As in the title, is it possible to run test methods within the same test class in parallel to speed up the testing process?
Currently using Junit but planning to switch to TestNG eventually so feel free to use either for your answer.
Using the tests in the context of Functional Testing (Selenium) and since the tests check the production server there would be no issue to using multiple threads to speed up the testing process.
From my search so far I have established that with TestNG I can run different classes(containing test methods) in parallel, what I wanted to know is if I can run the methods inside the same test class in a parallel and not serialized way.