Forum member

Kaerwek

23 posts

Posts by Kaerwek

  1. DataTestMethod with Enumerators fail in NCrunch

    Hi Remco, After seeing your reply since two months back, about a fix to this issue being included in a new version in the patch, I was hopeful that I'd find a patch or version release somewhere by now. I have however 3.11.0.9, which seems to be latest. Is there a patch somewhere I can download…

  2. DataTestMethod, NCrunch too strict?

    I've noticed that DataTestMethods with actual integers in the DataRows fail if the test is specified to type Double. Running the same test in Visual Studio native testrunner they pass just fine. But in NCrunch, I have to amend the tests and add a '.0' to make them doubles. E.g. [DataTestMet…

  3. DataTestMethod with Enumerators fail in NCrunch

    We're using DataTestMethods with enumerators, e.g. [DataTestMethod] [DataRow(AlignmentX.Center, "middle", DisplayName = "Returns \"middle\" for given AlignmentX = Center")] [DataRow(AlignmentX.Left, "start", DisplayName = "Returns \"start\" for given AlignmentX = Left")] …