Forum member

JoshSim

1 post

Posts by JoshSim

  1. ExpectedException in mstest not being captured when it is marked as async Task.

    [quote] [TestMethod] [ExpectedException(typeof(SomeCustomException))] public async Task Integration_FailingTest_ThrowsException() { await someMethod; } [/quote] The above does not seem to work using NCrunch, it is showing success in my MSTest runner, but not i…