Forum member

fsdMatthias

4 posts

Posts by fsdMatthias

  1. OutOfMemoryException on Compile

    Thanks, this seams to work.

  2. OutOfMemoryException on Compile

    When NCrunch compiles our test project, I get these OutOfMemoryException. Unfortunately the exception occurs not every time, approximately 4 out of 5 times. The Microsoft compiler works without problems and compiles the project every time. If you need any more information please let me know. NCru…

  3. Bug: DataTestMethod with DynamicData shows wrong result

    I checked with the new version and it works now as expected. Thanks

  4. Bug: DataTestMethod with DynamicData shows wrong result

    The following Test shows the status "Passed" even if it should fail. [code=csharp] public static IEnumerable<object[]> testInput => new[] { new object[] { new[] { 1 } }, new object[] { new[] { 1, 2 } }, }; [DataTestMethod] …