Forum member

shiranpuri

7 posts

Posts by shiranpuri

  1. Issue when using NCrunch with Code Contracts and Fody

    You can configure builds with different levels of analysis and exception rewriting. My current arrangement is 3 build modes: Debug: All runtime contracts, no static analysis Release: Public runtime contracts only (just the ones with an explicit exception specified), no static analysis Analysis…

  2. Generics in stacktraces

    Often times when looking at an exception that involves calls with generics I'd like to know what the actual runtime types were. It shows most of the rest of the call and type information in the popup, but generics get the generic definition name instead of the generic type. I realize that the no…

  3. Why Slow Report

    I also find myself sorting stuff by time spent, looking for what tests took longer than I care for... I don't quite follow what some of the durations represent though, especially if there are tests that timed out for example. Some sort of metrics on the time spent on given lines would be nice too…

  4. Stacktrace issues with code contracts on abstract methods

    Great! Thanks, that will be much appreciated.

  5. Stacktrace issues with code contracts on abstract methods

    I spun up a windows 7 vm and installed vs2012, the latest code contracts (from [url=http://visualstudiogallery.msdn.microsoft.com/1ec7db13-3363-46c9-851f-1ce455f66970]visualstudiogallery[/url] - was 1.4.60301.15 even tho the web page lists 1.4.60221.11), the latest ncrunch (1.44.0.11), and loaded+r…

  6. Stacktrace issues with code contracts on abstract methods

    I uploaded the project along with some screenshots and dumps of what I'm seeing.

  7. Stacktrace issues with code contracts on abstract methods

    Occasionally I run into a mismatch of line numbers and filenames, (the line number is correct, but the filename isn't), and it differs from the stacktrace provided when running it without ncrunch. I'm running ncrunch 1.44.0.11 in vs2012 update 1 on windows 8; the following code (with mstest) causes…