Forum member

AndrewSwerlick

7 posts

Posts by AndrewSwerlick

  1. Pricing

    I wanted to throw my two cents in on the expiration of the old version in. I am running the old version now, and was planning to wait until the holidays to ask for the upgrade to a paid version as a gift. I didn't realize it would be expiring so soon, making that a somewhat more difficult propositio…

  2. Silverlight Support

    I know Ncrunch doesn't currently support sliverlight, but I wanted to bring your attention to an open source project that does some continuous testing with silverlight and might offer you a good place to start on that feature when time allows. http://statlight.codeplex.com/

  3. References from early adopters?

    I've been using it for about a month now, and I've found it's really changing my development process. The line by line code coverage analysis is almost a replacement for booting up the debugger, and it's surprising how much time is saved just by being able to continue coding while your tests are run…

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

    Remco, I played with this, but I don't have alot of MSBuild experience, so I couldn't quite get it to cooperate. I tried just adding this to the .proj file <PropertyGroup Condition="'$(NCrunch)' == '1'"> <Version-Major>99</Version-Major> <Version-Minor>99</Version-Minor> </Property…

  5. Issue with Sharepoint Integration Tests

    Remco, Running inside a 32 bit process definitely sounds like the likely culprit. SharePoint 2010 is big on the whole 64 bit thing. Anyways, I submitted the bug report so you should see that soon. Thanks for taking an interest. I've got all my unit tests in ncrunch and I'm loving the interface…

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

    I've encountered an issue where the code coverage analysis piece of ncrunch doesn't work if a copy of the assembly under test is in the GAC. This happens frequently when doing sharepoint development, since all sharepoint development has to be done on the server, and sharepoint deploys the assemblies…

  7. Issue with Sharepoint Integration Tests

    I've just started playing with ncrunch and really like the setup. I'm having a little trouble with my integration tests that go against the SharePoint 2010 server object model. In SharePoint development, you have to instantiate the site object using the code using(SPSite site = new SPSite(<siteU…