Forum member

lassevk

9 posts

Posts by lassevk

  1. Debugging/instrumentation seems incompatible with new compiler output from VS 2015 RTM, no locals?

    I can help with that. Clone/download this project: https://github.com/lassevk/DiffLib changeset 026ab3773fe473adaa8339b29fb786aef3aeabcf Go to the Diff.cs file, line 74 (int matchStart = ...). Right-click the indicator for this line (after NCrunch has warmed up) then pick "Break into fir…

  2. Build fails under VS 2015 RTM, seems to be using old files/assemblies?

    No build warnings, the project builds and runs all unit tests successfully using ReSharper unit-test runner. Unfortunately the build issue rectified itself because I managed to change the interface definition by a linefeed to it, this seems to have forced a refresh of the offending file and now e…

  3. Debugging/instrumentation seems incompatible with new compiler output from VS 2015 RTM, no locals?

    When I managed to get my class library running under NCrunch earlier I had a test failure and right-clicked a line in the class that was under test and opted to break into the first failing test on that line. There were no named locals in the locals pane of Visual Studio, hovering over variables …

  4. Build fails under VS 2015 RTM, seems to be using old files/assemblies?

    I have this interface: public interface IDiffMatchAligner<T> { [NotNull] IEnumerable<DiffElement<T>> Align(Slice<T> slice1, Slice<T> slice2); } At some point, the Slice<T> types there were IList<T>, but have subsequently been replaced everywhere. Build of thi…

  5. White color for passing tests?

    Being slightly colorblind, I try to minimize all distracting colors from my GUI. In an earlier version of NCrunch, I was able to configure the color to use for lines with passing tests as white, effectively hiding the indicator when everything is OK. This seems to have been removed, as any col…

  6. Initial pricing information and release plan?

    I don't think you should worry too much about how the product is going to be received (https://twitter.com/#!/search/%23ncrunch) :) Word of mouth will get you your customers well before you're ready to market this thing in full. And to be honest, I don't think this product should be free only, fo…

  7. Initial pricing information and release plan?

    I know that these are hard questions to answer, so I'll say this, I won't hold you to your answers :) But still. Do you have an estimate on the pricing range you plan for this product? Also, do you have an estimate on the release plan? Are we talking Q2? Q3? Q4? 2012?

  8. Problem with NUnit TestCase attribute

    By "future", do you mean post-version-1, or part of version 1? I use that attribute *a lot*, I'd hate to see it go :( I also use the TestCaseSource attribute to provide a method that produces the testcases, haven't opened up a project with that yet so I don't know if it works or not.

  9. Problem with NUnit TestCase attribute

    I have several tests that uses the TestCase attribute to pass parameters to the test method, these are flagged as not covered, ie. black dots. If you grab a clone/snapshot of the code for my MicroLibraries project on codeplex (http://microlibraries.codeplex.com/), the following methods have that …