Forum member

Remco NCrunch Developer

7586 posts

Posts by Remco

  1. Different test results with ncrunch and NUnit tool

    For anyone interested, this issue should be fixed in the recently released 1.33b.

  2. Project builds fine in IDE and MSBuild but fails in NCrunch build

    For anyone interested, this issue should be fixed in the recently released 1.33b.

  3. NCrunch 1.32b fails to build projects that depend on NCrunch-instrumented projects

    For anyone interested, this issue should be fixed in the recently released 1.33b.

  4. 1.31b doesn't execute MSpec tests

    For anyone interested, this issue should be fixed in the recently released 1.33b.

  5. Icons are showing black

    For anyone interested, xUnit support was introduced in the build of NCrunch released this morning (1.33b).

  6. Build failure with extern alias

    For anyone interested, this issue should be fixed in the recently released 1.33b.

  7. Build runner does not build Web application projects

    Thanks for providing a link to the source code. I've been able to give the solution a good thrash with NCrunch and I can confirm that it works well with 1.33b. You'll notice that when you grab and run through your solution with the new release (due to be pushed out on Monday), most of your tests…

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

    I've had a good look at this one in the context of the solution you're building in. It seems that NCrunch has a compatibility issue with the DLR where dynamic types are being shared between assemblies. A workaround to this is to turn off instrumentation for the assembly exposing the dynamic type…

  9. Vote for the next testing framework to support!

    MSTest put up a much bigger fight than expected. I went down the road of integrating with Gallio in the hope that it would give me MSTest alongside many of the other frameworks, but Microsoft's MS Test runner simply wouldn't allow enough control over the code being executed for NCrunch to be able t…

  10. After Initial Install, All Projects Red And File Not Found Exception

    No problem. Please do kick through a report if you see it again :)

  11. Interesting bug with nUnit TestCase support

    Thanks for reporting this one - I got your bug report too and it makes perfect sense. NCrunch is using the brackets to identify the structure of the test case (this is just how NUnit is working internally). It should be an easy one to fix I think :)

  12. After Initial Install, All Projects Red And File Not Found Exception

    This is definitely not right. It looks as though NCrunch is unable to find its taskrunner .exe files. Can you submit a bug report through the NCrunch menu after this bug happens? I think there is something not quite right with your NCrunch installation.

  13. Code analysis doesn't work if copy of assembly is in GAC

    It looks like a way to set the assembly version using MSBuild is by download a set of build extensions and including an extra build target. You can then use some specific properties in the same way as you have above to define the version number. Have a look at (- BROKEN LINK -)(- BROKEN LINK -)[/u…

  14. Build runner does not build Web application projects

    I'm interested in why the MVC3 web app isn't showing in the solution list. Somehow the project must be configured or registered in a way that NCrunch doesn't recognise. Would you be able to use the 'Submit Bug Report' feature using the NCrunch menu when you have this happen to you? I'll have a lo…

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

    Thanks for reporting this one. I'll have a look at what's happening and will get back to you.

  16. Pending tests for NotImplementedException

    This makes sense. NCrunch doesn't currently have an 'inconclusive' status, but it needs one for a number of reasons. I don't see why tests can't be marked as inconclusive on a NotImplementedException - provided other test runners have already set the standard that is :) On the list it goes.

  17. Pending tests for NotImplementedException

    This is an interesting suggestion. I think the complexity here would be in differentiating between a test that was deliberately throwing a NotImplementedException and a test that was throwing a NotImplementedException by calling into actual production code that is expected to be working :) I'd l…

  18. Issue with Sharepoint Integration Tests

    Thanks again. I'll have a look at the report and will see what I can do.

  19. Code analysis doesn't work if copy of assembly is in GAC

    The underlying cause of this issue has a great deal to do with the prioritisation of assembly resolution within the .NET framework. The CLR tends to favor assemblies in the GAC, giving them priority over all other accessible assemblies. Even binding redirections seem unable to work around this pro…

  20. Issue with Sharepoint Integration Tests

    Interesting. I have a feeling this may be happening because at the moment NCrunch always runs the tests inside a 32-bit process, which according to the articles you've quoted sounds like it would be a problem for sharepoint. If you haven't already, would you be able to send through a bug report …