Creating the Bootstrapper is slow. This changes it from creating it once per test to just once per module (actually once per module test class). Currently all the tests could share the same Bootstrapper and shave off more time, but this change is just the quick win by swapping the NUnit attribute. It's noticeably faster.
Creating the Bootstrapper is slow. This changes it from creating it once per test to just once per module (actually once per module test class). Currently all the tests could share the same Bootstrapper and shave off more time, but this change is just the quick win by swapping the NUnit attribute. It's noticeably faster.
This will fix #9.