Forum member

yanglee

89 posts

Posts by yanglee

  1. Forum email notification doesn't work

    [quote=Remco;4504]About two weeks ago, there was a change made to fix the problem of email notifications not working for the majority of users on this forum. My guess would be that this coincides with the notifications no longer working for you. The change involved the reply-to address from the fo…

  2. Forum email notification doesn't work

    It seems the email notification feature of the forum doesn't work. I noticed this since about 1 week ago. For example, I subscribed to the following 2 threads (one is posted by me), but didn't receive email notifications when new posts are made: * [url=http://forum.ncrunch.net/yaf_postst990_NCru…

  3. Add ClearCoverageMarkers()

    [quote]Normally, the constructor of the test fixture would be called during the setup for the test fixture (a test which NCrunch would call 'StorageFeature.*'). There is physical separation between the code coverage for this fixture test and the test itself ('add_new_item'). Because of this separati…

  4. Add ClearCoverageMarkers()

    "Show coverage for selected test only" is probably my favorite feature. I'd like to suggest an enhancement to this feature: NCrunchEnvironment.ClearCoverageMarkers(). It should work only when "Show coverage for selected test only" is enabled. Below is an example that this feature could be helpful…

  5. Is it possible to force NCrunch to create a new instance of NUnit test class for each test method?

    I'm thinking if I should switch from NUnit to XUnit. The only reason I want to make the switch is NUnit reuses the same test fixture class for all test methods, while XUnit creates a new instance for each test. The previous admin of NUnit [url=http://blogs.msdn.com/b/jamesnewkirk/archive/2004/12/04/…

  6. Add keyboard shortcut for Show coverage for selected test only

    I personally almost always invoke the "Show coverage for selected test only" in the body of the test method (where I start my work). So didn't think about invoking it in the production code, which could have multiple tests to select. But that would be cool :) [quote]The problem is how to narrow d…

  7. Add keyboard shortcut for Show coverage for selected test only

    I use "Show coverage for selected test only" a lot. It greatly helped me understand my code and quickly locate the source of an issue. But currently it's located deeply in the sub menu of the right-click menu, took me 2~3 clicks and miles of mouse moves to invoke it. If there was a keyboard short…

  8. How to completely remove the license key

    I think maybe this should be optional. NCrunch is one of few products on my machine that need to re-enter license info when reinstall. People rarely need to remove license from a machine once installed, but for debugging purposes, may need to uninstall & install NCrunch multiple times on the same…

  9. Make some of the NCrunch files and folders hidden

    [quote=TLK;4427]Please drop a link to vote here, so I will not miss it :) Best regards, Anatoliy[/quote] Here is the link :) [url=http://forum.ncrunch.net/yaf_postst978_VOTE--Suggestion-to-make-NCrunch-cache-and--user-files-hidden-on-file-system.aspx]http://forum.ncrunch.net/yaf_postst978_VOTE-…

  10. VOTE! Suggestion to make NCrunch cache and .user files hidden on file system

    Since there wasn't an option 3: "I'm ok with either way". I picked option 1.

  11. Add a "Don't show this dialog again" checkbox to First Time NCrunch wizard

    [quote]Does your workflow involve many different solutions? [/quote] Most most the time I work on several old solutions that with NCrunch is already enabled. But when I need to test features of some (new) libraries or create demo projects that can reproduce issues, I may need to create several n…

  12. Add a "Don't show this dialog again" checkbox to First Time NCrunch wizard

    Hi, I always use the same settings (run tests automatically and concurrently) in the First Time NCrunch wizard. I'd like a "Don't show this dialog again" checkbox, when checked, NCrunch will remember my settings, and automatically apply the settings when I enabled NCrunch for a new solution the f…

  13. Debug namespace problem

    [quote]Do you remember if the issue appeared multiple times since the package update, or only during the package update? [/quote] I think it happened only during the package update. Not a serious issue to me. The last time I experienced it was several months ago. I removed the wrong files and gi…

  14. Debug namespace problem

    @Remco, I don't have any files in the 'Additional files to include' configuration. I experienced the issue 8~9 days ago after upgraded to NuGet 2.6 from 2.5 (haven't experienced this again since upgraded to new version of NuGet 7 days ago). Based on my git commit history, the issue happened w…

  15. Debug namespace problem

    @siywilliams, I'm also using NuGet 2.6.40627.9000. Below is my system configurations: NuGet 2.6.40627.9000 Resharper 8 Beta NCrunch 1.45.0.12 Visual Studio 2012 Windows 8 64bit [b]Edit[/b]: Just upgraded NCrunch to version 1.45.0.28. I will post here if I run into this issue again.

  16. Debug namespace problem

    I suspect this issue is related to NuGet. I experienced this 1~3 times several months ago. But didn't experience it again since then. But on the second day after upgraded to NuGet 2.6, I found my Git repository exploded from 30MB to 50MB. I checked my projects, and found the content of many Nu…

  17. Enlarge the hit area around the gutter icons to make them easier to click on?

    I experienced [url=http://forum.ncrunch.net/yaf_postst767_Markers-not-clickable.aspx]a similar but slightly different issue[/url] before: Markers of some tests are completely not clickable. It was fixed by following Remco's instruction: 1. Uninstall NCrunch; 2. Reboot and run 'devenv.exe /set…

  18. Use symbolic links for referenced assemblies in workspace

    Remco, thanks for your detailed answer. I've increased ram disk to 5.5GB, now everything back to normal. [quote]The big reason NCrunch copies these files is because of file locking issues - DLL files are locked by any application domain that makes use of them, which means they cannot be modifi…

  19. Use symbolic links for referenced assemblies in workspace

    Hi, Since I installed RavenDB's nuget packages (67MB) for my main project several days ago, I got an IOException every 0.5~2 hours because my 4GB RamDisk is out of space. By using [url=http://windirstat.info/]WinDirStat[/url], I found 95% of the disk space is filled with referenced dll files. …

  20. Support colored console output in Tests window

    Hi Remco, Could you give me an example how to change the following code so that the colored output can be displayed in NCrunch's Tests window? Thanks! [code=erlang]Console.BackgroundColor = ConsoleColor.Red; Console.ForegroundColor = ConsoleColor.Black; Console.Write("Hello");[/code]