Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. 1.31b doesn't execute MSpec tests

    I've taken a good look at this and reproduced both issues in the Lucifer solution: 1. As described, MSpec blows up when using the latest version of Castle in the testing environment. I've introduced a fix for this in the upcoming 1.32b release. 2. The Caliburn.Micro build issue appears to be …

  2. Rename *.crunchsolution.local.xml to *.crunchsolution.user

    Fair enough - I'll see what I can do :)

  3. Rename *.crunchsolution.local.xml to *.crunchsolution.user

    Hi Der-Albert - This does make sense - although there is a hidden reason behind the .local convention :) When originally designing the configuration system, I went into it with the intention that it could be possible to have 'shared' settings and 'local' settings. Each of these could be store…

  4. NCrunch should scan the sut's binary dir for DLLs

    Not a problem. I'm glad to hear it's working well! :)

  5. NCrunch should scan the sut's binary dir for DLLs

    Hi Mrt181, Have you tried using the [url=https://www.ncrunch.net/documentation/reference_project-configuration_overview]CopyReferencedAssembliesToWorkspace[/url] configuration option? Let me know if this solves the issue for you.

  6. Xaml files with german Umlaute äöüÄÖÜ don't compile

    Hi Slieser, Thanks again for posting this. I've successfully reproduced and fixed the problem in the upcoming 1.32b release. The issue is caused by NCrunch losing knowledge of the XAML file's original encoding when modifications are being passed through by the IDE. Therefore you'll only expe…

  7. BuildShadowTask Exception

    Gotcha. I'll need to do a bit of research to learn how the accessors work under the hood and why they are being impacted by NCrunch's build strategy. My assumption at this stage is that I'll need to introduce a fix to resolve this properly. I'll let you know if I can identify a workaround that yo…

  8. Vote for the next testing framework to support!

    Right now I'm still planning an integration strategy for MSTest. It's a bit of a monster compared with the other frameworks, so I'd rather be certain of what I'm getting myself into :) My best guess right now would be within the next few weeks. I'll try to announce it in quite a big way, so if …

  9. BuildShadowTask Exception

    Hi Stefan, Thanks for posting! Are you using an accessor to test under the hood of your runtime code? [url=http://blog.hinshelwood.com/tfs-error-msb4018-the-buildshadowtask-task-failed-unexpectedly/]http://blog.hinshelwood.com/tfs-error-msb4018-the-buildshadowtask-task-failed-unexpectedly/[…

  10. NCrunch cannot build my tests project, since it relies on the models project to generate a stub.

    It's an NCrunch thing. Because NCrunch needs to pull the entire project out of your working solution and into a workspace, it needs to know which files are required for the project to build/run. The primary way it handles this is by pulling file references from the .proj file. For everything el…

  11. NCrunch cannot build my tests project, since it relies on the models project to generate a stub.

    Yes, that is correct. NCrunch will pull projects out of the solution and build/test them independently from each other. This means that for the system to work correctly, it needs to be possible for your projects to work in isolation. There are tricks that you can use, such as the AdditionalFi…

  12. Xaml files with german Umlaute äöüÄÖÜ don't compile

    Awesome, thanks. I'll check it out :)

  13. Code coverage shows black bubbles in covered lines when using mspec style line breaks

    No problem. I'm glad it's adding value! :)

  14. Homepage, Passwords, Error messages

    Yeah - this forum software is very feature rich but there are some annoyances. Please let me know if you have any further trouble with it.

  15. Linebreak for better readability

    This is actually the output directly from the test runner, so I'm afraid there's not much I can do here :(

  16. Can't install VS2010 version

    Damn.. I'll have a bit of a think about what could be doing this ... Did the file copying workaround sort it out on your work PC?

  17. Code coverage shows black bubbles in covered lines when using mspec style line breaks

    No marker means that the line you're looking at isn't represented in the .PDB file compiled with your code, so it can never really be considered 'covered' by any test (as it's not physically executable). You'll notice that this corresponds with areas you're able to place breakpoints in your IDE. …

  18. Homepage, Passwords, Error messages

    Hi Slesa, Sorry - the forum software I'm using does have usability issues in some areas (particularly when working with IE9). Let me know if you want me to reset your password for you. If you're locked out, send me a message on twitter :)

  19. 1.31b doesn't execute MSpec tests

    Excellent - thank you :) I'll take a look.

  20. Code coverage shows black bubbles in covered lines when using mspec style line breaks

    This is happening because of the mechanics of the IL under the hood. There are a few situations where NCrunch isn't catching code coverage where it should ... many of these are around inline functions and therefore when writing MSpec tests you'll certainly notice it a lot more. I've also seen th…