I've been messing around with Selenium 2 for a while now, with the purpose of running automated tests My goal is to write tests in Java and run each test in different browsers, simultaneously if possible. My question to you is: Why use a Testing framework such as JUnit for this? It appears to be the most commonly used method for doing this. However, JUnit makes it much harder to work with multiple threads. I tried to just use plain old java without a testing framework, and this appears to work just fine. So I ask you, Is there a reason I should use JUnit? MultiThreadding is a much easier task without it. Also, are there easy ways to multithread with JUnit?
Thanks in advance