4
votes
1answer
696 views

Unit test an ExecutorService in a deamon

To execute tasks sequentially with a timeout I use ExecutorService.submit() and Future.get(). As I don't want to block calling ...
2
votes
2answers
136 views

Testing an Executor

I have written the following Executor: ...