Forum member

JohnFisher

2 posts

Posts by JohnFisher

  1. ETA of MSTest data driven tests?

    Remco, Have you looked at Gallio (http://www.gallio.org/) enough to see if it would let you run MSTest data-driven tests? It seems that it would be one of the goals of that project to allow you to skip the implementation if it handled things for you. John

  2. Tests inconsistent with Pass/Fail status

    Hi Remco, I just ran into this issue today, and after discovering that the test failed only after other tests had run in the same process, I followed the following path to figure out what was going on. 1. Wrap the offending line in a try/catch. 2. Inside the catch handler, throw aga…