Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. "Run test in existing process" gone?

    This feature is disabled if you have the [url=http://www.ncrunch.net/documentation/reference_global-configuration_terminate-test-runners-on-complete]Terminate test runners on complete[/url] setting turned on. Is this the case in your setup?

  2. Building reports on NCrunch Test data

    [quote=Saratprasad;8309]Thanks for the information, it did address my question. Is there any timeline by when we can expect the NCrunch APIs? [/quote] It's hard to make a commitment on this with a number of things up in the air (i.e. DNX integration). I was hoping for later this year, but we'…

  3. error 1310. error writing to file VSLangProj.xml. verify that you have access to that directory

    [quote=hemantkumar2597;8305]Hi Remco. Actually i am facing issue installing the visual studio. [/quote] Sorry I cannot help you with this problem. I suggest sharing the issue with Microsoft to see if they can help you.

  4. Is there a way to visualize the test pipeline?

    [quote=GreenMoose;8306] Hi, what would candidate as "big" here? Is 14s like this one a non-big one? :) [/quote] That's very big. Looking at its position, I would say that the engine was overloaded when it was switching the data out of the task thread and back to the core engine thread. Ar…

  5. error 1310. error writing to file VSLangProj.xml. verify that you have access to that directory

    Hi Hemant, Thanks for posting! To clarify - are you having trouble installing Visual Studio? Or are you having trouble installing NCrunch? Unfortunately I am unable to offer support for Visual Studio installation issues.

  6. Building reports on NCrunch Test data

    [quote=Saratprasad;8300]Is there a way to programmatically access NCrunch Metrics data within VS? I want to merge the Metrics data with other data from our engineering systems to report aggregate stats back to engineers. [/quote] At the moment, it isn't possible to obtain this in-memory from the …

  7. Test fails in NCrunch and passes in other runners.

    [quote=Allann;8299]I understand this is a very old post, but I just started using NCrunch and think it's awesome, but this issue is very prevalent in my solution (being a company framework) which uses weak references a lot. .Net 4.5 is also a lot more commonly used. Is there a new way to fix this?…

  8. .NET framework 4.6.1

    [quote=Dustin Moris Gorski;8297]I am keen on this fix as well. Could you not just release a hotfix 2.19.1 which includes only this change?[/quote] Sorry - I'm not sure exactly what you're asking here ... Do you mean a fix for .NET 4.6.1 support? This is essentially what the 2.20 build above is -…

  9. Risk/Progress Bar State Indicator Problem

    [quote=SeriousM;8294]Hi Remco, did you found time to fix the problem? Cheers[/quote] Hi! Sorry, not yet. But it will likely be included in the next release.

  10. AfterTestRun Method from SpecFlow is never Called if Tests run with NCrunch

    Hi Daniel, Thanks for sharing this issue. I've managed to reproduce it by following your instructions. The problem is being caused by NUnit being unable to load the SpecFlow NUnit plugin which is used to hook the shut-down of the test environment. NCrunch doesn't officially support NUnit plu…

  11. File Issue - Incorrect Path

    Hi, Is the file being generated in a project that is referenced by the project containing the code that is using it? If so, you need to be aware of how NCrunch wires together application domains across its workspaces. See [url=http://www.ncrunch.net/documentation/considerations-and-constraint…

  12. Framework461

    Hi, See here for a build with a fix for this problem - [url=http://forum.ncrunch.net/yaf_postst1727_-NET-framework-4-6-1.aspx]http://forum.ncrunch.net/yaf_postst1727_-NET-framework-4-6-1.aspx[/url].

  13. NUnit duplicate name warning without duplicate names

    [quote=ssg;8283]And also because the duplicate test check uses `ToString()`, any parameter objects that don't have ToString() implementation shows up the object type instead and cause the same problem even without any strings.[/quote] This is also true, although there may be less we can do about …

  14. NUnit duplicate name warning without duplicate names

    Hi Sedat, Thanks for sharing this. It looks like this problem is caused by NCrunch truncating the longer parameters to try and make the test names shorter and easier to read. It seems this is also impacting the test uniqueness (which it shouldn't). I've noted this down to be addressed. Ther…

  15. XUnit theories are not found by NCrunch if I am using Fluentvalidations instead of regular Asserts

    [quote=royboy23;8278] thanks for your quick reply. I'm using XUnit 1.9.2.1705[/quote] Thanks - this makes sense. There is a limitation present with Xunit v1 where NCrunch is unable to detect the reference to this framework unless there is a [Fact] declared in the project. This is because NCr…

  16. XUnit theories are not found by NCrunch if I am using Fluentvalidations instead of regular Asserts

    Hi, thanks for sharing this issue. Can you confirm which version of Xunit you are using?

  17. Displaying paramaterised tests

    Thanks for sharing this. It looks like the issue is being caused by an integration problem caused by AutoFixture. It looks as though AutoFixture changes the behaviour of Xunit somehow in this situation, and Xunit/NCrunch is using a fallback method to ensure the test can still be run. I'll need …

  18. Displaying paramaterised tests

    Thanks for clarifying! Can you confirm that you have your 'Framework utilisation type for Xunit' set to DynamicAnalysis? In most cases, NCrunch should expand the test cases to their individual cases. I'm not sure at the moment why this isn't the case here - if you can share any sample code, I…

  19. Displaying paramaterised tests

    [quote=Magbr;8270]Hi, I am allready using Xunit 2.1.0 and NCrunch 2.19.0.4! I'm using autofixtures InlineAutoData attribute if that plays a role.[/quote] Sorry, can you clarify a bit further on how your expecting the tests to be displayed? Are you expecting an extra grouping at method level?

  20. Displaying paramaterised tests

    Hi, thanks for posting! When working with Xunit V1, NCrunch is integrated via Gallio, which automatically bundles parameterised tests into singular tests so it can make sense of them. From Xunit V2, NCrunch supports separation of parameterised tests implicitly. So if you upgrade to Xunit V2, …