Forum member

GraemeF

12 posts

Posts by GraemeF

  1. xunit.runner.utility v2.2.0 "Unable to restore required Nuget packages..."

    I've just spent some time investigating this (and ended up here...) - maybe the error message could be improved to make it clear that it isn't really a problem unless using Xunit? Also, more information about the failure might be useful so we can try to fix it! G.

  2. Indication that test results are out of date

    It would be really handy if, when I am looking at the test results for the selected test, I could tell if these results were up to date with the code without having to look at the corresponding line in the grid. Maybe if they went grey or something? Not sure, but I often find myself trying to keep a…

  3. Clickable stack dumps in test results

    When a test fails the test results usually tell me where to go next in the form of a stack trace at the point of failure. Unfortunately the source file paths in this window are to NCrunch's shadow copy of the source files and they're not clickable anyway. It would be very nice if I could click a …

  4. Improvement: Show "All Solutions" Configuration even no solution is loaded

    Yep - fixed in my big solution :)

  5. Interop.ActiveDS causes unreliable build in ncrunch

    Everything works straight away in v1.33b - I've even deleted all of our crunch config files! Brilliant! :D

  6. Improvement: Show "All Solutions" Configuration even no solution is loaded

    Just remembered to send the report - anyway it's done now :)

  7. Pending tests for NotImplementedException

    No, my normal TDD workflow is to write a test then I use ReSharper to generate any new methods, and in their bodies it throws a NotImplementedException. Some test runners (e.g. ReSharper) treat a test that throws one of those as inconclusive, and it shows up yellow rather than red. So, I can keep…

  8. Pending tests for NotImplementedException

    It'd be nice if tests that throw a NotImplementedException could be shown as Pending rather than Failed. It would make me feel better about it, anyway ;)

  9. Improvement: Show "All Solutions" Configuration even no solution is loaded

    [quote=Remco;279]If this happens to you again, can you bash the bug reporter? It's probably being messed up by a background exception of some kind (and is therefore a bug that I'd like to swat).[/quote] I'll do that first thing tomorrow - I have a solution with about 90 projects in it that does it…

  10. Improvement: Show "All Solutions" Configuration even no solution is loaded

    I sometimes get a blank configuration window even if a solution is loaded :/

  11. Interop.ActiveDS causes unreliable build in ncrunch

    [quote=Remco;220]It seems that the SGEN issue is caused by the build process attempting to derive a serialization assembly from a project that is set to be signed during the build. Basically, NCrunch is forcing MSBuild to delay sign the assembly so that it has the opportunity to properly instrume…

  12. Tests from base class don't run if the derived class is in a different project

    Hi I've run into the following issue. Given these classes: [code=csharp][TestFixture] public abstract class BaseClassWithTests { [Test] public void HelloFromBaseClass() { } } [TestFixture] public class DerivedClass : BaseClassWithTests { }[/code] NCrunch runs th…