Forum member

MaxRonin

32 posts

Posts by MaxRonin

  1. Reset status on treeview node with children does not work

    I wasn't aware of the [Isolated] attribute - this is very interesting, thank you!

  2. Reset status on treeview node with children does not work

    Churn mode has already helped a lot and often! The tests where these things happen are usually integration tests that use stuff like MassTransit; or tests that try to ensure a certain performance threshold is met. In my particular case, it's weird though, because they don't fail on the CI - o…

  3. Reset status on treeview node with children does not work

    I've got a a few tests which, sadly, are unstable on my machine. Fixing that is in techdebt and will eventually gotten round to, but because they are stable enough in the CI (strangely), this has no high priority. So every once in a while they or a few of them fail. They are all contained in the …

  4. How to accept changes detected by VerifyTests?

    Yes, that solves it completely - very cool, thank you!

  5. How to accept changes detected by VerifyTests?

    I'm using [url=https://github.com/VerifyTests/Verify]VerifyTests[/url] (formerly knows as ApprovalTests). When I have a failure - the .verified and the .received files mismatch - and I run the test manually, my diff tool ([url=https://winmerge.org]WinMerge[/url]) opens and shows me the difference…

  6. Stuck at "ncrunch engine is initialising"

    Aha, in my case, I had to delete the while ProjectEvaluation folder, not just the metadata file, in addition to deactivating the feature.

  7. Stuck at "ncrunch engine is initialising"

    Hmm, so I just got here because I innocently upgraded VS to 17.2 and now NCrunch is not working anymore. I followed the advise to deactivate the "Use project cache..." feature *AND* deleted the *.metadata file in .vs/ProjectEvaluation, but it still doesn't work. And, interestingly, when I restart…

  8. Build error for net6 blazor webassembly project

    Hi Remco, that did the trick, thank you! Out of curiosity: why "false"? From the name of the property you'd think it oughta be true? Cheers, Max

  9. Build error for net6 blazor webassembly project

    Hi, I got a net 6 blazor (client-only) project that NCrunch refuses to build with the error message: [quote] NCrunch: If you are experiencing problems in getting this project to build, have a look at http://www.ncrunch.net/documentation/troubleshooting_project-build-issues ..\..\..\..\Program …

  10. Experiences/Advice about setting up an Azure VM as grid node

    Hi, I'm thinking about setting up a grid node because my solution has a lot of projects and tests and despite my machine being pretty well-equipped, this is starting to hurt a bit, especially on git-operations that merge incoming changes. But as I am working from home and got only the one mac…

  11. Failure at analysis step

    Thanks, that was it. For anyone else who might be having a similar issue: You can check your installed runtimes with [code]dotnet --list-runtimes[/code] Be careful about the distinction between Microsoft.[b]NETCore[/b].App 3.1.10 and Microsoft.[b]AspNetCore[/b].App 3.1.10 In my c…

  12. Failure at analysis step

    Done

  13. Failure at analysis step

    Done :-)

  14. Failure at analysis step

    Hi Remco, I didn't find anything in the eventlog etc., but I managed to pare the test project and the production project down to where they have: *) no other project references *) no code files except one testfixture in the test project and the problem still happens. I've created a priva…

  15. Failure at analysis step

    Hi, [b][size=7]tldr:[/size][/b] In one of my test projects I get the error [quote]An error occurred while analysing this project after it was built: NCrunch encountered an unexpected error occurred while building an environment to analyse an assembly: nCrunch.TaskRunner.Ipc.IpcConnectionClose…

  16. Build issue

    Weirdly, this has gone away moving stuff to a new library project. I have a hunch that this has to do with the offending library project having been created via the VS wizard, while the others without problems are basically copies of a template project. I will try to reproduce this within the nex…

  17. Build issue

    It may take me a few days to come back to you, I'm a bit under pressure currently. But I will, I'd like to get to the bottom of this.

  18. Build issue

    Hi, I also submitted an in-app bug report, so maybe this is duplicated, but I didn't find any corresponding post. (As a side-note: would be nice if the submit tool displayed the URL where the bug went). I got a strange build problem. NCrunch complains: [quote]Unable to find built assembly. C…

  19. Approvals and Distributed Processing

    Hi again, it seems from the rewriting of the source path stems a second problem: Since I've added the "include additional items..." options: If perform these steps: 1. Write new test 2. Run it with a reporter popping up a merge tool in case of failure. 3. The merge tool pops up. The p…

  20. Approvals and Distributed Processing

    [quote=JayBazuzi;8442]What if ApprovalTests switched away from using the call stack, to using [CallerMemberName] and [CallerFilePath]? [/quote] I think these do not use reflection, but are replaced by the compiler at compile time. Not sure, though.