Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. Change location of NuGet build/testing area

    [quote=DanAtkinson;14585]Gah! After further reading of the documentation, I found that the setting is called [b][url=https://www.ncrunch.net/documentation/reference_global-configuration_workspace-base-path]Workspace[/url][/b]. I was searching for everything but this! It would be great if settings…

  2. NCrunch 4 - Instrumentation Mode - Optimized - Project fails to build

    [quote=mkoertgen;14586]Sorry for the typo, my bad. It's definitive the latest NCrunch 4.3.0.13[/quote] Thanks for confirming. The problem is being triggered by something unexpected in the CIL structure of the assembly. Are you able to reproduce this issue using a sample project that you can sha…

  3. NCrunch 4 - Instrumentation Mode - Optimized - Project fails to build

    Thanks for sharing this. Can you confirm whether you experience this with the latest version of NCrunch? We've been rolling out CIL-related fixes with great frequency in the newer builds.

  4. Tests using razorlight fail

    Hi Dave, Thanks for sharing this issue and for taking the time to create a sample solution that reproduces it. I've spent today pulling apart the projects involved (Razorlight, FluentEmail, etc) to understand what is happening here and what can be done about it. The results of this have not b…

  5. Test runner fails to run on v4.3.0.13

    Thanks for sharing this. I have a feeling about what may be going on here. We'll take a look and will let you know as soon as we have more information.

  6. NCrunch fails test on first run and then passes on second run

    [quote=LKEthan;14575] Out of curiosity, will Ncrunch replicate empty directories in the future? [/quote] I'd like to say yes, but this is one of those problems that is relatively low in impact (i.e. affects very few people) and takes a surprisingly high effort to solve. So if we're to fix th…

  7. Test runner fails to run on v4.3.0.13

    Hi, thanks for sharing this issue. Are you able to recreate this problem with a sample solution? It's likely to be dependent on the main structural aspects of your project (i.e. framework, nuget references, etc), as opposed to your actual code.

  8. NCrunch fails test on first run and then passes on second run

    Hi, thanks for sharing this problem. Yes, we currently don't replicate empty directories into the workspace. This is a known issue. I would recommend making a call to System.IO.Directory.CreateDirectory at the beginning of your test to ensure the directory containing the .bat file exists. Th…

  9. manual and automated tests, merging

    [quote=jdixon2007;14564]Thanks, that may work. Can cov results be merged/aggregated? We have in proc and out of proc results I need to aggregate, automation wise, then at tail end manual test to augment (till they get automated). Can you folks do that?[/quote] I really recommend experimenting a b…

  10. manual and automated tests, merging

    Hi, thanks for posting. In terms of its feature-set, no. NCrunch can only capture results from automated test execution. However, there is a rather hacky way of having it capture results from a manual test run. This is to write an 'explicit' automated test that bootstraps the UI of your appl…

  11. Unstable Test Generation

    Thanks for sharing this. Out of interest, were the declarations for your parameterised data being placed in a different assembly to the one declaring the tests themselves? At first look, this is about the only way I could see such a situation generating an inconsistent number of tests. The discov…

  12. With optimized instrumentation generic MSpec behavior fails with "This test was not executed..."

    Hi, Thanks for sharing this problem. I've managed to reproduce it exactly as described. We'll take a look and will update you when a fix is available.

  13. NCrunch refuses to run when dependent project uses .NET Standard and a test library

    Hi, thanks for sharing this issue. When NCrunch detects your netstandard project as referencing Xunit, it considers it a test project. The easy solution here would be to go into your NCrunch configuration for this project and disable the Xunit adapter for the project. This will stop NCrunch fro…

  14. NCrunch & Visual Studio 16.5.0 - tooltips flicker

    Thanks Wilhelm. I noticed an exception in the bug report you submitted. There may be something we can do about this. I'll place this in the backlog to be examined in future.

  15. vcxproj x64 issue

    Hi, thanks for sharing this issue. At this point in time, we don't have any specialised support for C++. We basically attempt to build the projects, and if they work then we can often roll with them, but we have no special interactions with the C++ build system and have performed no extensive te…

  16. NCrunch & Visual Studio 16.5.0 - tooltips flicker

    Thanks for sharing this issue. I'm not sure at the moment how to reproduce this issue, so I guess it's question time. Did this problem appear for you suddenly after something changed? Or has it been going on for a while? Do you have the 'Optimize rendering for screen with different pixel d…

  17. Analysis failure for generic fixture

    Could you try the following build and let me know if this solves the problem for you? [url=https://s3.amazonaws.com/downloads.ncrunch.net/NCrunch_Console_4.4.0.3.msi]NCrunch_Console_4.4.0.3.msi[/url] [url=https://s3.amazonaws.com/downloads.ncrunch.net/NCrunch_Console_4.4.0.3.zip]NCrunch_Console_…

  18. NCrunch reports tests as failing even though all tests pass, and no indication why.

    Can you try setting your Log Verbosity to Detailed inside your build system, then tracing through the log to examine the execution of the failing test? It may be that the log yields information that isn't available in the TeamCity report. Could you also confirm whether the test is marked as fail…

  19. Analysis failure for generic fixture

    I'm having trouble reproducing the issue you've reported with this code: [code=csharp] using NUnit.Framework; [TestFixture(TypeArgs = new[] { typeof(string) })] internal class SomeFixture<TOne> { [Test] public void SomeTest() { } …

  20. NCrunch reports tests as failing even though all tests pass, and no indication why.

    Are you able to reproduce this failure in any form using the NCrunch VS Client? The reason I ask this is because I'm trying to establish if this is a reporting difference in the console tool itself. To my knowledge, it's not possible for a test to fail with no error information. If you can prod…