Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. x86 vs x64 (Sqlite)

    Hi Brian, Thanks for posting :) NCrunch builds to whatever platform you've configured your project files to, though the test runner is currently fixed to run things as x86. x64 support is still coming. Cheers, Remco

  2. NullReferenceException building test project

    This is a problem caused by instrumentation. Most likely your assembly has a certain IL arrangement that isn't supported by NCrunch. Try turning off instrumentation on this project to see if that makes a difference. If there's any way for me to have a copy of the assembly (.dll) that's causing th…

  3. Exception when right clicking on processing queue

    Good catch! Can you send this through using the 'Submit Bug Report' option in the NCrunch menu? Looks like a nice easy one to fix :) Cheers, Remco

  4. Add support for Visual Studio 11

    For anyone who would like to try NCrunch with the VS2011 Developer Preview, know that you can simply copy the NCrunch extension directly into your VS2011 installation and it should work almost as normal. i.e. just copy the files from: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7…

  5. dynamic build errors still persist in 1.34b

    Damn. You aren't by chance working in an open source solution are you? All attempts I've made to reproduce this issue consistently have failed ... I think it's being triggered by a combination of build configuration and some kind of unusual IL arrangement.

  6. Alternatives for coverage indicators

    Cool. UI isn't really my strong point either, but I think I can handle shapes :) I'll see what I can do about a config option for this in the next release. I usually kick out a build roughly every 3 weeks, so check back soon :)

  7. Alternatives for coverage indicators

    Thanks for the feedback :) I think there are a few ways of making the markers less obstructive... unfortunately Visual Studio does tend to be a bit of a nightmare in this area, as in VS2010 the construction of the editor window is done using an interesting combination of WPF panes mounted inside …

  8. Build failure with extern alias

    After some investigation, it seems that 1.33b has a defect where assembly reference aliases that are used multiple times within the same project can cause builds to fail. I've introduced a fix for this in 1.34b (released today).

  9. Tests are not recognized

    For anyone interested, the issue with static tests has been fixed in 1.34b (released today).

  10. Icons are showing black

    This should now be fixed in 1.34b (released today).

  11. NCrunch 1.33b occasionally fails to build an assembly, but provides no error information

    Ok - the fix for this is out in 1.34b, released today :)

  12. Build runner does not support inline dynamics e.g. var myObject = blah.MethodWhichReturnsDynamic()

    I gave this another go, though it didn't recur for me in 1.34b ... so I'm thinking that it's likely been fixed. Anyway, 1.34b is out today, so you're welcome to give it a try and see if this fixes it for you.

  13. Ncrunch died on me

    Ok - I've included a fix for this issue in 1.34b (released today). Please let me know if this solves it :)

  14. Code coverage issue

    Thanks for following up with this one - I saw the bug report come through this afternoon and it's good to have the chance to exchange more information about this problem. I think the first thing to try is to see if 1.34b (released this afternoon) gives you the same problem. 1.34b contained a fix t…

  15. Add support for Visual Studio 11

    I do intend to. The plan is first to make sure the tool is stable enough and simple enough for first time users to understand... one issue with the extension manager is that it doesn't give the same degree of visibility to the website (with its forum, wiki, etc).

  16. TestCaseSource attribute incorrectly requires TestCase attribute, not Test?

    I think what's happening is that NCrunch only considers a test to be a test if it has either a [Test] attribute or a [TestCase] attribute with parameters on the method signature. So if a test is marked with TestCaseSource and has parameters, then NCrunch thinks it can't be a [Test]. I don't th…

  17. Add support for Visual Studio 11

    Yep ... it's coming :)

  18. TestCaseSource attribute incorrectly requires TestCase attribute, not Test?

    I'm amazed that it's possible to get TestCaseSource working at all, as so far I've made no effort to support it :) Thanks for reporting this one. I'll have a look at it.

  19. NCrunch 1.33b occasionally fails to build an assembly, but provides no error information

    When NCrunch creates an application domain for running tests, it wires together assemblies from different workspaces (and different file paths) in much the same way as other test runners do when they have shadow copy enabled. 1.33b relaxed some of the rules around how these assemblies were resolved…

  20. NCrunch 1.33b occasionally fails to build an assembly, but provides no error information

    Gotcha. I have some ideas on how I can fix this now .. I think I know what's going on. Fix will be in 1.34b.