Forum member

abelb

155 posts

Posts by abelb

  1. What does "analysis failure" mean?

    On a test set that previously run without issues, I now receive "Analysis failure" under the status column in the NCrunch Test window. The log window seems to show nothing. The pending tests keep showing as pending (x high priority tests are queued for execution) without anything happening. What …

  2. Losing many tests due to duplicates in test names, but not method names

    [quote]If a windows restart corrects the issue, I have a feeling that something could be much more deeply wrong here (perhaps in the O/S itself)?[/quote] Possibly. Since my primary concern is usually productivity, I cannot always try to get to the root of the issue. I do know, for a fact, that bo…

  3. Losing many tests due to duplicates in test names, but not method names

    [quote]Sorry I'm not entirely sure what you mean here - are you referring to the execution sequence of tests in NCrunch's processing queue?[/quote] No, the order of execution is already close to perfect (impacted, fast, failing tests first, etc). In the top right of the NCrunch Tests view, ju…

  4. Losing many tests due to duplicates in test names, but not method names

    Thanks for pointing me to that link. Is it possible that in the past, where we had discussions that the whole tree only showed green, but the root markers of the tree summarized it as red regardless, that this was caused by tests hidden? And is it likewise possible that when I see long delays, that …

  5. Losing many tests due to duplicates in test names, but not method names

    I have a lot of test that are semi-autogenerated, fully autogenerated and/or in some way auto-populated. I have often wondered why I have different total test counts locally with NCrunch and remotely on the test server (TeamCity with NUnit 2.6.4 test runner). For a new project I noticed that when…

  6. MissingMethodException after moving from VS 2012 to VS 2015

    [quote]The release of v2.17 included a change in the cache file format, [/quote] It makes sense. They run relatively normal now. And I just realized that I use them with Debug builds, and on the test server I use the Release build, so it is hardly a fair comparison ;).

  7. MissingMethodException after moving from VS 2012 to VS 2015

    I found the culprit. It turned out that after conversion to VS 2015, the NUnit test F# project referenced the F# 3 runtime, while other parts referenced the F# 4 runtime. Don't know why it wasn't consistently updated. Strangely, some of the assemblies still target the F# 3 runtime, but since the Uni…

  8. MissingMethodException after moving from VS 2012 to VS 2015

    After a somewhat frustrating conversion from VS 2012 to VS 2015 (weird bug [url=http://stackoverflow.com/questions/33533647/difference-between-treatment-of-ambiguous-generic-interfaces-by-f-between-vs-20/33535191#33535191] with order of interfaces inherited by other interface[/url]) I downloaded NCr…

  9. "New version available" banner overlaps Visual Studio

    Hi Remco, Thanks for your answer. I wasn't aware of that setting, thanks. Typically, it sits in the bottom right of my screen. But now it started sitting in the middle of my screen and that, I think, is a (small) bug. To repro, what I did was connect remotely through TeamViewer, with a different …

  10. "New version available" banner overlaps Visual Studio

    While it is informative to see that there's a new version available and that I should download it, when my screen gets resized, it ends up covering important parts of my editing environment. In addition, I see no way of dragging it away. Luckily I can close the message, but it keeps popping up. Show…

  11. NCrunch keeps saying it is running, even though all child tests have finished

    Unfortunately it still happens. In fact, it keeps happening at unclear moments. It may be related to the race condition we talked about in another recent bug report from me, but I don't know. Here's a screenshot of one such situation. For a while (after a VS restart) it usually does not occur. T…

  12. Underscores are not visible in the NCrunch log window

    See image. If I copy the text to an editor, the text is (two underscores): "Expected: File 'result1_2.xml' should_exist" This often causes us confusion, for instance with typenames that end up in the log and have underscores, but more importantly, path names or strings that are compared and su…

  13. All projects status "Not built", blue question mark in first column

    As in the title, and see screenshot below. I've sent a bug report from within VS with the following contents: title: All tests and all project have a blue question mark and status "Not built" content: After one of the rebuilds of a project in the solution, first one, and later all (after I …

  14. Random test failure when using TestCaseSource: The parent fixture of this test experienced a failure

    Well, as you may have seen in my previous comment: the problem disappeared at some point (more specifically, after I switched the amount of allowed build process memory to 1 byte higher, which seemed to trigger a full sweep of any temporary files, a handy shortcut if I need to do a "reset" of NCrunc…

  15. NCrunch keeps saying it is running, even though all child tests have finished

    I meanwhile thought it had something to do with me trying to redirect stdout and stderr, to test commandline execution of our application, but that doesn't seem to be the case. It also looks like (but I am not 100% sure) that we not keep any references, but since we are calling Program.Main programm…

  16. NCrunch keeps saying it is running, even though all child tests have finished

    It now happens with individual tests as well, no matter how often I run them, the hourclock shows and it shows "Running (Failed last run)". When I rerun, I see the execution time change, but not the status, nor the icon. Also, I briefly see a small icon, right on top of the blue pin-icon lighting up…

  17. Random test failure when using TestCaseSource: The parent fixture of this test experienced a failure

    Hmm, forget what I said about misunderstanding "should contain someString", as it is correctly mapped to testing for a string. It also reports "Expected: String containing "xxx"". I did the following, in my effort to get the logging verbosity working: I increased the Builg process memory limit b…

  18. Random test failure when using TestCaseSource: The parent fixture of this test experienced a failure

    Ok, now I know that I misunderstood the behavior of "should contain someString", which, instead of containing a string (Is.StringContaining) is mapped to the CollectionContains assertion. This does not explain the inconsistent behavior though (string are themselves collections, the test may have bee…

  19. Random test failure when using TestCaseSource: The parent fixture of this test experienced a failure

    I followed your link and did the following as well, though I don't think they are a requirement, I do realize that Console.XXX are static methods, so: [list] [*]Adding a "lock someStaticObject" statement around the potentially offensive part in the code (where the stdout/stderr are redirected) …

  20. NCrunch keeps saying it is running, even though all child tests have finished

    I have submitted a bug report. It may also help with forum post 1388, it is the same project.