Forum member

tomtrias

4 posts

Posts by tomtrias

  1. PDB Format is truly a nightmare

    I have started trying to remember to use different variable names in the various scoped in a method just so I can see debugging information in NCrunch, or better still providing decent logging during operation so even using the debugger directly becomes unnecessary. I've kept up with the forum post…

  2. NCrunch 4 - Optimized mode - Debugging tests is mission impossible?

    This is pretty weird; I am getting some really strange behavior inspecting variables when I have a situation like the following (even in Legacy mode): foreach(var item in collection.Where(item => item.BooleanProperty)) { ... } foreach(var item in collection) { ... } If I inspect "item…

  3. NCrunch 4 - Optimized mode - Debugging tests is mission impossible?

    I will narrow down a small reproductive case when I get a chance; hopefully it is fairly simple to do. The code base I am currently working on is large and complicated.

  4. NCrunch 4 - Optimized mode - Debugging tests is mission impossible?

    I have had similar issues with watches / variable or expression evaluation using NCrunch Optimised Mode in Visual Studio 2019 for a .NET 4.7.2 project using Win32 (Full) PDBs. I also noticed that stepping into or out of methods now shows a bit of stepping through external code (instrumentation, if …