Forum member

thedo

2 posts

Posts by thedo

  1. Issues with MSTest AssemblyInitialize

    Thanks for the reply! In our case the tests are run serially and constrained to 1 thread, so the optimizations don't seem hugely valid. Is there a way to disable these optimizations via the options (I can see some optimizations can be disabled). Changing the code isn't really an option as it w…

  2. Issues with MSTest AssemblyInitialize

    I'm currently working on a large project using MSTest (~20,000 tests) and I'm finding that tests *seem* to be calling the AssemblyInitialize once per test as opposed to once per assembly. In my case the tests setup some data that can only be set once, and throws an exception upon multiple attempts (…