Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. Can't go to selected Test from NCrunch Tests Tool Window in VS 2015 CTP5

    The following is a test project I'm trying to build to reproduce the issue you've described. [quote]using Microsoft.Xrm.Sdk; using Ploeh.AutoFixture; using Ploeh.AutoFixture.AutoNSubstitute; using Ploeh.AutoFixture.Xunit; using Xunit; namespace ClassLibrary3 { public class NSubstitut…

  2. Bug. NCrunch cannot build project when using build time config transformation

    Hi Thomas, Thanks for sharing this issue and the code to reproduce it. A code sample always makes this so much easier to analyse! The problem is being caused by a faulty build step in your project. The project assumes that the 'bin\debug' directory always exists underneath the project path. …

  3. Can't go to selected Test from NCrunch Tests Tool Window in VS 2015 CTP5

    NCrunch is completely reliant on the Xunit framework to supply it with the full name of the physical method that represents the test. As you're likely aware, Xunit has ways in which you can override or extend its behaviour using custom attributes that feed into user defined code. Depending on wh…

  4. Can't go to selected Test from NCrunch Tests Tool Window in VS 2015 CTP5

    How are the NSubstituteCrmAutoData and Frozen attributes implemented? Is this a custom framework of some kind?

  5. Allow parallel execution setting with grid nodes

    Hi, thanks for posting. The 'Disable parallel execution' solution-level setting will disable parallel execution at machine level. This means that if you have a grid, it's still possible that each node can be running a test at the same time, but it isn't possible that any node can be running two …

  6. Can't go to selected Test from NCrunch Tests Tool Window in VS 2015 CTP5

    I can't think of anything changed in 2.20 that would affect this, but I really need a code sample to analyse it first. Are you sure you can't put anything together that demonstrates the problem in a way you can share with me?

  7. Can't go to selected Test from NCrunch Tests Tool Window in VS 2015 CTP5

    Hi, Can share share some details about which tests are causing this problem for you? Are you using MSpec? If you can give me some sample code of a test that you can't navigate to, I may be able to reproduce and fix this promptly.

  8. VS15 Installer

    Hi Matthew, No plans at the moment. Right now it's still too early to look into integrating with VS15. I'll re-evaluate this when it reaches RC status.

  9. Not loading debug symbols

    This is interesting - are you saying that the problem itself seems to be intermittent rather than method-specific? This is something I haven't seen before, and it's very worrying, because it will make this extremely difficult to track down. What sort of occurrence pattern do you notice around th…

  10. Manually removing breakpoint that NCrunch set up crashes visual studio

    [quote=michaellogutov;8552]Another thing - this could be related to Resharper (I've got it running all the time).[/quote] I think it's become hard to find developer machines without Resharper installed these days :) Unfortunately, the VS debugger is far from perfect. I've noticed a range of r…

  11. Red dots on Green tests?

    Hi, Thanks for sharing this issue. I'll need to ask a few more questions to fully understand what is happening here .. - When you see the coverage markers turn red, are there corresponding failures shown in the NCrunch Tests Window? - What kind of pattern do you see around the red markers?…

  12. Manually removing breakpoint that NCrunch set up crashes visual studio

    Hi, Thanks for sharing this issue. I haven't been able to recreate it myself, but I expect that it's likely to be the result of some kind of threading issue, so it probably shows more consistently in some scenarios than others. NCrunch has exception traps all over its handling of breakpoint…

  13. Parallel test case execution

    Hi, thanks for sharing this issue. Your configuration looks correct, so the first thing that comes to my mind is your .cache file. When NCrunch runs your tests for the first time, it has no knowledge of how long each test takes to execute. This means that it cannot create an efficient pipelin…

  14. Not loading debug symbols

    Hi, Thanks for sharing these issues. I'm going to try to separate them from each other so we can troubleshoot them independently. 1. Debug related issues: NCrunch is reliant on custom debug metadata that is emitted by the compiler for async methods and yield iterator blocks. When Roslyn was…

  15. How to expand/collapse tree nodes in NCrunch Tests window?

    [quote=SteveC;8539]The link to the user voice seems to be broken :-([/quote] Are you behind a proxy of any kind? The link seems to work for me. Try this one without HTTPS: [url=http://ncrunch.uservoice.com]http://ncrunch.uservoice.com[/url].

  16. Build appears to fail due to Japanese in c# strings

    Thanks for sharing the sample code. I've managed to reproduce the problem. It didn't fail for me in the same way as you've described, but it still failed badly enough for me to figure out what was happening :) NCrunch is failing to correctly detect the encoding of BOM-less UTF8 source files tha…

  17. Feedback about failing test in case the mouse hovers the > character

    Hi Ralf, This is actually defective behaviour, and I plan to address it soon. The test entry point shouldn't be overriding the tooltip behaviour for exception messages (which are more important). When implemented correctly, the test entry point should never mask an inline exception.

  18. Build appears to fail due to Japanese in c# strings

    [quote=Joakim;8530] Edit: I tested a few more things and noticed that the projects that fails to build will build as long as the files affected in each project is open in visual studio. Close any of the affected files and the project that the file belongs to fails to build.[/quote] This makes …

  19. Issue cause by updating to version 2.20

    [quote=ChrisLau90;8528] It turns out that that window is caused by running any of my JavaScript unit tests. I will set these tests to ignored for the meantime until this problem is sorted out. Is there anything I can do to help you debug the problem? [/quote] NCrunch itself doesn't support Java…

  20. Build appears to fail due to Japanese in c# strings

    Is there any chance you can whittle this down to a small code sample (a project that builds) and submit it through the [url=https://www.ncrunch.net/support/contact]contact form[/url] on this site? If I can get a clean sample to reproduce the problem, I stand a good chance of being able to implement…