Hi again
Today I had an even more concrete example of a false positive test.
I added a new repo with a method which looked like this
Code:
public async Task<object> DoSomethingAsync(int someValue)
{
throw new NotImplementedException();
}
I have the same method running synchronous (with the same name but without the Async) where I have already written all tests for. So the async tests where just simple copy past, add some awaits and add "Async" to the method calls.
When I had finished editing all the new async tests all but one where green, what actually is impossible. I checked all calls again, everything correct and the method under test still had only one line which was the exception to be thrown. As soon as I ran the tests on its own they all failed, as expected.
@Remco I had the Churn mode running for a bout 1 h and it didn't show up any errors.