Hacker News new | ask | show | jobs
by tmk1108 2421 days ago
How do you deal with parallel tests execution? Given that they are all static, you can't have multiple tests running at the same time setting up the mocks or they might overlap
1 comments

You can add a static "InitTest" method somewhere which initializes the modules. Use a double checked locking pattern [1] in there to make sure, that you instantiate and assign the modules used for testing exactly once.

[1] https://en.wikipedia.org/wiki/Double-checked_locking