Forum member

dariusdamalakas

43 posts

Posts by dariusdamalakas

  1. NCrunch grid node on linux

    Any updates on this? I don't know the details, but I wonder how many "older" versions of VS need to be supported. Working on mac right now using Rider, and I was excited to see that Rider is supported! But then reality struck again, since Rider is supported only on Windows. I understand t…

  2. NUnit 2 vs NUnit 3

    Indeed it did! Console runner runs now too. [13:17:10.1044-LocalTestExecutionTask-25] Calling into task runner to run 1 tests: NCrunchTestCasesV2.TestNUnitV2.When_("a","b") [13:17:10.5579-Core-33] Successfully completed execution of 1 tests on local machine [13:17:10.6734-LocalTes…

  3. NUnit 2 vs NUnit 3

    Also, tried running tests using console runner, but that failed horribly. Looks unrelated. Thought just to run console tool to see if it behaves dfferently. ncrunch NCrunchTestCases.sln NCrunch Console Tool v3.11.0.9 Copyright ¸ 2010-2017 Remco Software Ltd Usage of this tool is permit…

  4. NUnit 2 vs NUnit 3

    A picture to illustrate this: [img]https://ibb.co/foF7tw[/img] Repo to reproduce this. VS 2017 with 3.10.0.20 NCrunch. https://github.com/dariusdamalakas/NCrunchTestCases

  5. NUnit 2 vs NUnit 3

    We still happen to use NUnit v2. I've noticed as of recent versions that NCrunch does not correctly split TestCases into separate tests. Below you'll see the output from a single test, event though this is 2 test cases. With NUnit 3 (3.8.1) this works fine. Is this a regression issue, or N…

  6. NCrunch was unable to locate this test during NUnit's execution run.

    Thanks, i'll try this this. Will log the exception in a catch block and add the line to start debugger. Will let you know how it goes.

  7. NCrunch was unable to locate this test during NUnit's execution run.

    Good point - yes, we do use SetUpFixture. Sets up logging, and some other static properties. Do you think this would have an impact in certain situations?

  8. NCrunch was unable to locate this test during NUnit's execution run.

    No, its not consistent, and i have no idea how to reproduce this. It is happening couple times a day, but i cant tell under what conditions this is happening. The only sure thing i can is that this issue is introduced in the newer versions of NCrunch. Previously i have not seen this, i have used …

  9. NCrunch was unable to locate this test during NUnit's execution run.

    Any other info i could send to help solve this?

  10. NCrunch was unable to locate this test during NUnit's execution run.

    This is getting annoying, have seen this many times over last few weeeks. "NCrunch: This test was executed on server '(local)' NCrunch was unable to locate this test during NUnit's execution run. This problem can be caused by tests with names that contain random elements, such as through the…

  11. NCrunch Does Not Copy Files Marked "Copy Always"

    Actually, the files were copied because i added to copy them manually via config - but the files end up in src folder, not under bin/debug. This is a blocker for me, as i have to revert to using ReSharper, and not NCrunch

  12. NCrunch Does Not Copy Files Marked "Copy Always"

    Got same issue. NCrunch for VS 2015, 3.6.0.2 -- Files are copied here: C:\Users\<user>\AppData\Local\NCrunch\11640\30\src\<service> -- but the files need to be in here. Resharper does work fine. C:\Users\<user>\AppData\Local\NCrunch\11640\30\test\<service>.Tests\bin\Debug

  13. NCrunch configuration wizards gets hidden under VS window

    Ok, had a chance to clone a repo with 2 .sln files. Opened them both at same time, navigated to other windows, came back, clicked on VS and it showed conf wizard window. Not a 100% confidence level, but it does look like this is working now. Thanks alot!

  14. NCrunch configuration wizards gets hidden under VS window

    Thanks. Downloaded and installed. As said above, not really sure how to definitely trigger config dialog. Will let you know if this still comes up with 2.27

  15. NCrunch configuration wizards gets hidden under VS window

    No, that does not work. I have removed all "*ncrunch*" files from the repository. Opening solution in VisualStudio does not trigger the wizard dialog. Does NCrunch have a temp folder where it might cache its settings? Also, triggering wizzard manually is pointless - it works as expected. The is…

  16. NCrunch configuration wizards gets hidden under VS window

    Sure, i can help reproducing this, but I need your help as well expalining when NCrunch configuration wizard is being shown when I open solution. I have removed all *ncrunch* files from the repo, and reopenend the project, but VS did not open the configuration wizard, instead, NCrunch was left as d…

  17. NCrunch configuration wizards gets hidden under VS window

    Windows 10, NCrunch and Resharper, no other extensions

  18. NCrunch configuration wizards gets hidden under VS window

    Hi, I used to be getting this strange behaviour long time ago, but this week i have to constantly switch from one VS solution to the other (we've got 40+ microservices, and i need to make minor changes to most of them). Issue and rough steps to reproduce: When opening VS for a new project whic…

  19. TestCases hidden by NCrunch and not run

    [quote=Remco;8738]Hi, This is caused by a technical limitation. Because of the mechanics involved, there is no way for NCrunch to correctly handle this situation. [/quote] Thanks for the reply. It's good that NCrunch will warn about this, that i think is better than simply hiding the test. …

  20. TestCases hidden by NCrunch and not run

    Lol, here's a funny workaround :) Dynamically add ID parameter to each testcase. Sharing this just for fun, don't really recommend this. I am really doing this because i have 160 test cases, so it's quicker like this. [code=csharp] public IEnumerable<TestCaseData> Custom…