I have a piece of code where different threads manipulating the HashMap. I have to synchronize this piece of code. Later, I want to test this using JUnit. So is it possible to test multithreading using JUnit? If yes could you please give me an example.
|
Absolutely, but it's not easy. There's an excellent chapter on this topic in Freeman & Pryce's "Growing Object Oriented Software" book, which I can highly recommend. |
|||
|
|
|
I've actually done this, but only for simple multi threadded scenarios. Basically, what you want is to synchronise the access of multiple threads towards your hashmap, or in other words, to have a predictable order in which a bunch of threads to things on the hash map. You could build test cases where each Thread logs in the nanotime and some unique id each time it does something, and then have an assert on these log entries (which can be kept in memroy, they don't have to to be outputted to an actual file) that checks if they're in the correct order. Here's an example of how I unit test multiple (well actually it's just 2) threads accessing the database, to make sure that they do it in the order I expect them to do it:
// dRet1.setName("dRet1");
|
|||
|
|