Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. dotnetcore and NUnit 3.6.0

    Hi, thanks for posting. It's interesting that you have managed to get NCrunch working with MSTest/Xunit under v3.3. Because v3.3 doesn't yet have a runtime environment targeted towards .NET Core, I expect your mileage here will be very limited. This looks like a .NET Core runtime exception, s…

  2. NCrunch Process \ Slow Computer

    Hi Ed, Yes, for 7 instances of the NCrunch engine, this would be normal. Depending on how it's configured, NCrunch will keep processes around after it's created them in case they are needed again (up to a certain limit per engine). You'll notice these processes use 0% CPU when they are inacti…

  3. Temporarily disable NCrunch from command line?

    Hi Omeed, Thanks for posting! Short of sending keystrokes to the VS process, there is nothing in NCrunch that can do this yet, though it would be a good request for the upcoming API - [url=https://ncrunch.uservoice.com/forums/245203-feature-requests/suggestions/5655779-create-an-sdk-for-third-…

  4. V3 support for [DataRow] in MSTest V2 is not working

    Hi, thanks for sharing this issue. From my own experiments with the DataRowAttributes, it appeared to me that these would only work if you specified a [DataTestMethod] attribute instead of [TestMethod]. After comparing your code between VSTest and NCrunch, it looks like MSTest can actually use…

  5. TestCaseSource code always shows empty coverage

    Unfortunately, there really isn't any way that NCrunch could safely track the coverage of this initialiser. Beyond being executed in the test discovery step, this code is run as part of a static constructor. Static constructors are usually executed by the CLR the first time a class is referenced…

  6. Unable to exclude tests based on category

    This makes sense. When you set up your filter to only run the integration tests that pass, make sure you also include the 'has been run' condition in the filter. My assumption is that you'll still want to run integration tests if they've never been run before and they don't have a result. Regar…

  7. netstandard support

    There is a way to switch it off :) The 'Check for updates' global config setting. I know it's not the same as what you're asking for, but I thought I'd check to make sure you knew about it.

  8. Unnecessary .ncrunchproject files

    This setting may seem small and annoying, but for new users, it's a big deal. The setting controls the presence of a hyperlink to the documentation allowing people to troubleshoot problems with projects that NCrunch has never been able to build before. If this is moved into the .user file, peopl…

  9. v2.24 not coping referenced assemblies

    Sorry, to use v3.3 you'll need to upgrade your license. I can't provide a discount on account of a technical fault like this.

  10. Unable to exclude tests based on category

    Are you able to produce a test solution that you can share with me that reproduces the issue?

  11. Malware Detected ???

    [quote=jschreuder;9777][quote=Remco;9776]Hi, thanks for the heads up on this one. You can submit a false positive report to Symantec from here - [url=https://submit.symantec.com/false_positive/]https://submit.symantec.com/false_positive/[/url].[/quote] Done. Interestingly, I have the 2015 …

  12. Malware Detected ???

    Hi, thanks for the heads up on this one. You can submit a false positive report to Symantec from here - [url=https://submit.symantec.com/false_positive/]https://submit.symantec.com/false_positive/[/url].

  13. Unable to exclude tests based on category

    Engine modes can be stored in either the solution configuration, or the global (machine) configuration. This is the difference between the (This Computer) and (This Solution - Shared) modes that you have. Somehow (perhaps through upgrading the product), you have two sets of engine modes that exist…

  14. license server appears to be reallocating licenses incorrectly

    Hi, thanks for sharing this issue. The license server relies on the concept of a unique id (see [url=http://www.ncrunch.net/documentation/tools_license-server_my-unique-id]http://www.ncrunch.net/documentation/tools_license-server_my-unique-id[/url]), which identifies each user accessing the serve…

  15. Coverage is missing in VSIX Project (VS 2015)

    Hi, thanks for sharing this issue. The problem here is in the VSIX project template itself. This project contains a declaration as follows: <CopyOutputSymbolsToOutputDirectory>false</CopyOutputSymbolsToOutputDirectory> This breaks NCrunch's instrumentation, because the instrumentation …

  16. NuGet package does not load correctly

    Hi, Under VS2010, an upgrade of NCrunch (or any extension) causes VS to flush its package cache and rebuild this. Because VS is not perfect, there are some situations where clearing out and rebuilding the cache can cause internal problems. This means that while it is unlikely NCrunch is respo…

  17. Coverage not detected

    Hi, thanks for sharing this problem. I've tried to construct a small reconstruction of this, but it's hard to understand how the pieces here connect without the actual code behind this. A few things worth checking: - Try running the test with a debugger to see which lines it actually hits. …

  18. AccessViolationException on creation of application domain

    Do you experience this problem if you execute the same code under NUnit, using the NUnit console runner? This looks to be a system related issue.

  19. ExpectedException Attribute hides failures in TestCleanup

    Hi, thanks for sharing this problem. This looks to be a compatibility hole. I'll see what I can do to get it fixed. Thanks again for bringing it to my attention!

  20. AccessViolationException on creation of application domain

    Hi, thanks for sharing this issue. This code seems to run normally for me regardless of the target framework. Do you have FIPS enabled on your system? Does turning off the 'Instrument output assembly' setting for the projects involved make any difference?