Quote: [TestMethod]
[ExpectedException(typeof(SomeCustomException))]
public async Task Integration_FailingTest_ThrowsException()
{
await someMethod;
}
The above does not seem to work using NCrunch, it is showing success in my MSTest runner, but not in the nCrunch test runner.
Advice please?
I am evaluating it, and this is the first roadblock today.
Josh