Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. Having trouble with a Portable Class Library (PCL) - Load Failure

    I've managed to reproduce this issue using a Universal Class Library project template. It looks like this project type has the same structure as a DNX project, with a few differences. Sorry, I won't be able to provide you with a solution to this problem until DNX support is added to NCrunch. Univ…

  2. Having trouble with a Portable Class Library (PCL) - Load Failure

    Hi, thanks for sharing this issue. It looks like NCrunch is unable to properly identify this project type, and it thinks it's compiling a DNX project. Do you know which VS project template was used to create this project? Or can you share any sample code using the [url=https://www.ncrunch.net…

  3. Can NCrunch be improved in the "analyze stage" somehow?

    Hi, Those are some fairly extreme times for a single project. How large is this project? Broadly, there are two things that happen in the analysis step that could take a long time: 1. The creation of an application domain for discovery and testing: Before NCrunch can invoke a test framewor…

  4. NUnit tests with the same name inside the same project.

    The ItShouldThrow example you've given above looks perfectly fine. Remember that NCrunch also uses fixtures, namespaces and projects to disambiguate tests from each other. Having two tests under the same name should be physically impossible without using TestCaseSource or a very interesting parame…

  5. NUnit tests with the same name inside the same project.

    [quote=GreenMoose;7938]Thanks. Having unique test names for us is a bit cumbersome since it breaks the "BDD style" test layout "WhenCustomerIsAuthenticated" (fixture) -> "ItShouldNotThrow", "ItShouldCreateALogEntry", "ItShouldCreateEmailNotification" (tests) etc. [/quote] I wouldn't think tha…

  6. NCrunch does not ignore TestCase tests correctly with NUnit 3

    [quote=DeltaEngine;7936]Thanks. I also have to say that NCrunch NUnit 3.0 Support is the best. ReSharper 10 is completely broken (executes all tests instead of the selected one, even ignored ones, text output is broken, etc.), CodeRush still does not support it, the NUnit Test Adapter plainly does n…

  7. MissingMethodException after moving from VS 2012 to VS 2015

    [quote=abelb;7933]I found the culprit. It turned out that after conversion to VS 2015, the NUnit test F# project referenced the F# 3 runtime, while other parts referenced the F# 4 runtime. Don't know why it wasn't consistently updated. Strangely, some of the assemblies still target the F# 3 runtime,…

  8. MissingMethodException after moving from VS 2012 to VS 2015

    Is the referenced assembly loaded into the GAC perhaps? GAC resolution takes priority over everything else, and it can result in considerable mess in some situations. If not, does setting the engine in [url=http://www.ncrunch.net/documentation/troubleshooting_compatibility-mode]compatibility mod…

  9. SetUpFixture for specific namespace gets executed when running a single test in different namespace

    Hi, thanks for posting. Can you confirm which version of NUnit you are using?

  10. NCrunch does not ignore TestCase tests correctly with NUnit 3

    Hi, thanks for sharing this issue. My guess would be that the ignore attribute is being applied at the test level and it isn't working its way down into the individual test cases. As a result, NCrunch isn't applying it correctly. As you've discovered, the workaround is to manually ignore the …

  11. NUnit tests with the same name inside the same project.

    [quote=GreenMoose;7918] Does this mean I should not have 2 tests within same project where the test names both are named e.g. "ItShouldThrow", no matter namespace/fixture name etc. ? [/quote] The uniqueness of a test is determined by: - Project - Namespace - Fixture - Test 'name' as reporte…

  12. How to choose what projects and solutions not to test

    Hi, thanks for posting! I'm sorry in that I'm having a hard time understanding exactly what you're asking. Are you saying that you want to try and use NCrunch across multiple solutions at the same time? Or that you want to consolidate coverage reports together for multiple solutions? In the …

  13. Early versions of .NET 4.6 under x64 where a serious GC performance...

    The grid nodes don't detect this problem, but they aren't as heavily affected by it. The amount of algorithmic processing on the nodes by NCrunch is actually very low - they mostly just spawn processes and call into user code. I would expect that there is no action you need to take here, but if yo…

  14. Ncrunch output window text wrapping

    Hi Paul, Thanks for posting! Sorry, at the moment this isn't possible. The only thing I can suggest is that you put it forward as a [url=https://ncrunch.uservoice.com]feature request[/url] and try copying/pasting stacks out of the window to try viewing them in another editor.

  15. Coverage info vanished

    Hi Ilya, Thanks for reporting this problem. Please accept my apologies for the website being down – it seemed to hit some kind of DB related problem overnight and has since recovered. It looks to me like there is an inconsistency here being caused by a race condition in the test. The test st…

  16. Error executing tests

    You can upload using the contact form - [url=https://www.ncrunch.net/support/contact]https://www.ncrunch.net/support/contact[/url]

  17. Error executing tests

    Would you be able to submit a bug report after you've had NCrunch fail to find this file? It shouldn't need to have it present in the root directory. Something is not working right here.

  18. Error executing tests

    Hi, Thanks for sharing this issue. When installing via ZIP, make sure you fully extract everything from the ZIP. This file is under the path: Remco Software\NCrunch for Visual Studio 20xx\Modules\MSTest\nCrunch.Module.MSTest.dll I've just checked the ZIP, and it's definitely there. Most l…

  19. Concurrent execution of Tests from Build server

    [quote=sheryl;7907] Would NCrunch's parallel run be applicable for concurrently running the same set of testcases or the job for different environments? [/quote] Yes, though only through the use of a very recently introduced feature, if I understand this question correctly: [url=http://www.ncru…

  20. Tests with custom ExpectedException attribute are failing

    Sorry, it does not look custom MSTest ExpectedException attributes will ever be supported by NCrunch.