Forum member

chvdf

4 posts

Posts by chvdf

  1. False positive test results with .NET Core

    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=csharp] public async Task<object> DoSomethingAsync(int someValue) { throw new NotImplementedException(); } [/code] I have the same method runni…

  2. False positive test results with .NET Core

    @GreenMoose: I will give it a try when i encounter the behavior again.

  3. False positive test results with .NET Core

    Hi Remco, lets make the example a bit more concrete. We have tests that monitor our Auto mapper config. Meaning the test check that each of our profiles are valid. Now lets add a new property to one of the classes which are included in the auto mapper configs. The impact testing might not ru…

  4. False positive test results with .NET Core

    Hi! I was wondering if I am the only one with this problem... When my ncrunch unit start up and runs all test everything is green (yeah). I edit some code, still green (OK it works). Also when i click on run all test, they are still positive. I upload the stuff to our build server, which also…