Forum member

VNicholson

27 posts

Posts by VNicholson

  1. Build failure with InvalidCastException.

    [quote=Remco;6201]Sadly I've been unable to reproduce this problem using the signatures you've provided above. I think there must be another element here that I'm missing. I realise that you've already found a workaround to this problem, so I'm hesitant to ask for more of your time on this. If …

  2. Test window output area using incorrect line endings

    When I copy text from the output area of the NCrunch Tests window, it seems to be adding '\n' 0x0A characters as the line endings instead of the usual '\r\n' 0x0D 0x0A. Pasting to Notepad then results in one big line of textual mess. Is this something peculiar to my environment or has the NCrunch…

  3. Performance Issues with NCrunch v2.6

    [quote=Remco]A fix for this is now available in the [url=http://www.ncrunch.net/download]2.7 release[/url]. As described above, changing the font size to a value without a decimal will also work around this problem.[/quote] I purged all of my NCrunch configuration files and repeated the original r…

  4. Performance Issues with NCrunch v2.6

    [quote=Remco;5743]Can you let me know what the 'Text output font' is set to under your global configuration? And whether changing it makes any difference?[/quote] You might be on to something there. My OS is running in German and the font size was "Courier New, 825". Changing this to 8 seems to ha…

  5. Performance Issues with NCrunch v2.6

    I observed this same problem after upgrading to 2.6 and had to revert to 2.5. NCrunch appeared to be behaving fine until I tried to activate the 'NCrunch Tests' window at which point Visual Studio appeared to hang, consume a lot of memory and then crash. If there are any logs I can enable to help yo…

  6. Incorrect coverage detection with NUnit TestCaseSource

    Thanks for the quick response Remco, your theory was spot on. I was using a Type name as the test name and because four test methods were sharing only two sources there was a lot of overlap going on. I refactored things so that I have four test case sources now, each with a unique name prefix and th…

  7. Incorrect coverage detection with NUnit TestCaseSource

    I use a number of TestCaseSource based unit tests that use reflection to cover a set of common functionality in some of my classes. NCrunch 2.2.0.2 (in Visual Studio 2012) seems to have issues with coverage colouring and population of the 'Tests Covering' context menu for these tests. In a single…