I need some advice/help. I have a test suite as follows:
A test abstraction class:
A test as follows:
When i test this by running the test suite, a few threads are started in eclipse. After my test ends, these thread are still running. When i want to test again, again a few threads are started and this keeps going on and slows down the whole system everytime i try to test. Why are these threads not stopped? Should i use tearDown() to do this manually somewhere? Any help would be appreciated.