Forum member

oriches

14 posts

Posts by oriches

  1. Upgraded VS 2022 to 17.12.1 (.Net 9 support) and nCrunch now failing

    Builds & runs the tests with this build. Thanks Ollie

  2. Upgraded VS 2022 to 17.12.1 (.Net 9 support) and nCrunch now failing

    Been using for nCrunch with .Net 8 WPF based apps perfectly fine, and now getting the following issue, .Net 9.0 runtime & SDK are installed. [b]Any ideas?[/b] [i]An error occurred while analysing this project after it was built: NCrunch encountered an unexpected error occurred while building …

  3. Issues building in nCrunch when using Task<T>

    I'm seeing the following error when nCrunch is building, any ideas what I have to do to resolve the issue? 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 ServiceModel\Service…

  4. Hide 'excluded' from NCrunch Metrics

    I've excluded assemblies (test dll) from the metrics but they are still appearing in the list, it would be nice to toggle the view so that the 'excluded' do not show. This would make looking at coverage etc easier... Cheers Ollie

  5. Disabled tests should not use black icon

    yes something either at the test and\or class level - if i'd disabled all the tests then something at the class level makes sense as well.... ta Ollie Riches

  6. Disabled tests should not use black icon

    I need to explain the situation better... The issues is we forgot the tests had been disabled in nCrunch and i was scratching my head trying to work out why these test weren't running in nCrunch. After several restarts of VS and deleting user generated files from the solution directory to try …

  7. Disabled tests should not use black icon

    We had a disabled test class and because the nCrunch test window was not showing the disabled tests, when looking in the test file it showed the black nCrunch icons. It took a long time to work out why the tests were not running - because the test class had been ignored\disabled in nCrunch. I …

  8. Disable nCrunch whilst nuGet is updating...

    Currently we're using SVN with AnkhSVN plugin for VS. We're thinking of going to a DCVS possibly Mercurial with a VS plugin. I suppose I was thinking that if the VS plugin generated some events indicating an updatez\refresh was taking place then nCrunch could then disable\enable etc. The fact …

  9. Disable nCrunch whilst nuGet is updating...

    Thinking about this it would also be good if nCrunch could be disabled if an update from source control is being performed because that also can reload projects etc. Cheers Ollie

  10. Disable nCrunch whilst nuGet is updating...

    We have an internal nuGet server and it takes a couple of minutes to update packages, it would be good if nCrunch disable building whilst nuGet is updating... Cheers Ollie

  11. I want to run tests in parallel at the test class granularity...

    Found the issue and it wasn't nCrunch, it was how I was shutting down the WebAPI self hosting instance - I've blogged about it here http://awkwardcoder.blogspot.co.uk/2012/10/tricky-continuous-testing-and-self.html

  12. I want to run tests in parallel at the test class granularity...

    I'll give it ago and let you know...

  13. I want to run tests in parallel at the test class granularity...

    Total agree with the idea of writing tests to support concurrency - nCrunch has really highlighted... The issue I have is the fact only one service can use a HTTP port at anyone time, so for my test I have several test for the HTTP GET verb so I run all the tests on the same port by using the Tes…

  14. I want to run tests in parallel at the test class granularity...

    I have a scenario where I'm self hosting a RESTful web service inside the test class to test a REST client I've written. Each of these test classes creates a self hosted WebAPI service on a unique port and therefore I want to run all of the unit tests for a particular test class in a serial manner -…