Forum member

DanHil

85 posts

Posts by DanHil

  1. Chocolatey Packages

    [quote=Remco;7757] A few off the top of my head: - The user would likely need to specify a suitable hostname that would resolve to the license server (I doubt many systems will work using an IP address). IIS usually needs to be configured for this - The user may wish to use SSL for the license s…

  2. Chocolatey Packages

    I am doing quite fine, thanks :) Just stating that you are officially approving those packages is what I need. And you already did that. OK, so there is a text file for the license server. I can obviously use that. However. is there also a way to register a version during installation, without…

  3. Chocolatey Packages

    Hi Remco, long time no talk, I hope you are doing fine! :-) I have joined henning in maintaining the NCrunch packages on Chocolatey and have converted them to automatic packages. This means that my server is checking your server once a day to see if there is a new version. If so, it automatic…

  4. Project settings not taken into account after project rename

    It's consistent and very simple to reproduce: http://screencast.com/t/YiHldTicp At 00:51 I perform a double click on the "IgnoreThisComponentCompletely" to switch the value from False to True. Also, notice the "NCrunch engine is initializing" message at 00:52. This seems to be incorrect, too.

  5. Project settings not taken into account after project rename

    In the settings of a project, I changed some settings. Then, I renamed the project: NCrunch didn't handle this rename, i.e. the v2.ncrunchproject file hasn't been renamed as well, and so all settings I made for the project are "lost". Sure, I can just rename that file back, however, the problem i…

  6. NCrunch in VS 2008: No spinner, no way to config marker style

    Thanks for your reply. That's what I expected. I still posted it in the desperate hope that the problems were unknown [b][i]and[/i][/b] easy to fix :-) As I said: I am happy NCrunch supports VS 2008 at all ;-)

  7. NCrunch in VS 2008: No spinner, no way to config marker style

    For the current project, I am stuck with VS 2008 (yikes!). While I am very happy that NCrunch generally works with VS 2008 I noted two things, with the first one being more than just cosmetics: - The spinner in the status bar is missing. I always have to have the tests or risk window open to even…

  8. Code Coverage indicators missing

    Thanks :-) Yes, in fact, restarting VS does *not* help. Only closing an re-opening the files seems to work.

  9. Code Coverage indicators missing

    The code coverage indicators are missing in some files in VS 2013 Preview 1: http://screencast.com/t/L2QAj6Fq7Zh Any idea what could be the issue? Update: After closing all files in VS it started working again. However, when closing VS and re-opening it, it seems as if the files that are aut…

  10. NCrunch fails to build Xamarin.Android project

    [quote=Remco;4390]Thanks Daniel - this gave me all the information I need :)[/quote] Nice! :-) Will you release a new version that supports those?

  11. NCrunch fails to build Xamarin.Android project

    I sent you the project file via the contact page. Additionally, I sent you one from Xamarin.iOS. I think it has a few build actions on its own: - BundleResource - InterfaceDefinition Finally: Wouldn't it be better if NCrunch would simply copy all files referenced from an attribute "Include" th…

  12. NCrunch fails to build Xamarin.Android project

    Which XML declaration do you mean? Are you asking for the project file?

  13. NCrunch fails to build Xamarin.Android project

    They [i]are[/i] referenced from the project file but with a Xamarin.Android specific build action of "AndroidResource".

  14. NCrunch fails to build Xamarin.Android project

    NCrunch can't build my Xamarin.Android project in VS 2013 Preview 1. I get the following output: [quote]NCrunch: If you are experiencing problems in getting this project to build, have a look at http://www.ncrunch.net/documentation/troubleshooting_project-build-issues#0 ..\..\..\..\..\..\..\..\…

  15. Risk/Progress bar - what do you want to tell me?

    I finally just have to say it: I don't understand what the Risk/Progress bar is meant to tell me, especially the "risk" part. And I read [url=http://www.ncrunch.net/documentation/concepts_risk-and-progress-bar]the documentation[/url] several times already. Am I being dumb or are others feeling t…

  16. NCrunch creates instances of attributes on tests, tripping up my behavior

    That wouldn't work. The result would be that my customization would be executed once for the whole test suite. Not once per test. My current solution is a hack: Don't execute the code if the attribute has been created by NCrunch: http://blog.fire-development.com/2013/06/30/unit-testing-with-autof…

  17. NCrunch creates instances of attributes on tests, tripping up my behavior

    When writing unit tests, I use AutoFixture with its xUnit extensions, specifically with the support for [url=http://blog.ploeh.dk/2010/10/08/AutoDataTheorieswithAutoFixture/]automatically created data[/url]. AutoFixture is a framework for creating "anonymous objects". For example, when you want t…

  18. Allow customization of test tree in NCrunch Tests window

    I understand that the title is a bit vague, so let me give you a concrete example: I structure most of my tests in the following way: - One folder per class under test - Inside that folder, one class per method or closely related functionality - Inside the class multiple test methods for dif…

  19. System.InvalidProgramException : Common Language Runtime detected an invalid program.

    To be honest, I haven't really invested a lot of time to investigate it. However, on the code base I experienced it, all 1000 tests failed. But there are good news: The code base is open source, so you can try to reproduce it yourself: https://simpleinjector.codeplex.com/SourceControl/latest

  20. System.InvalidProgramException : Common Language Runtime detected an invalid program.

    I am seeing this problem with a .NET 4 project that uses MSTest. NCrunch version is 1.45.0.12. Turning off 'Analyse line execution times' solves the problem. I have no problem with my xUnit.net projects.