Forum member

SeanKilleen

7 posts

Posts by SeanKilleen

  1. SpecFlow + TestContainers -- How to tweak NCrunch to behave similar to other runners?

    Those tips in test atomicity are exactly what I needed. Don't know how I missed them before! I see the point and feel very confident they'll solve the problem. Thanks!

  2. SpecFlow + TestContainers -- How to tweak NCrunch to behave similar to other runners?

    Hi, I love NCrunch as a product but I'm a bit inexperienced with how to tweak it for certain situations. In my current case, I have a SpecFlow project using SpecFlow.xUnit (so, generating xUnit tests). I'm using Testcontainers with this project. My tests are structured in the below way: [l…

  3. ncrunch 2019 Chocolatey installer doesn't seem to detect VS 2019

    Sorry, I should have been clear -- the MSI installer from the web site appears to work correctly. I mistakenly thought this was put out by the team; I'll reach out to the chocolatey package maintainer to submit the issue. Thanks!

  4. ncrunch 2019 Chocolatey installer doesn't seem to detect VS 2019

    Hey! Thought you'd want to be aware of this. I prefer chocolatey for installing packages and saw that NCrunch was on offer. I previously installed 2017 there but now installed 2019 as well. I have VS 2019 Enterprise (v16.0.0) after launch, but this affected the preview as well. I run "choco…

  5. Exception when building with NCrunch 2015 2.11.023

    Just wanted to add a +1 here that this version appears to fix a similar issue I was having on VS 2015 with the previous release. Thanks!

  6. NCrunch ignores xUnit Theory if it is the only test in a file

    [quote=Remco;5921]If you are using attributes that descend from the Xunit attributes and are not declared inside xunit.dll, this means you'll need to have somewhere a dummy '[Fact]' test to ensure the reference to Xunit can be identified.[/quote] This makes sense, because [Theory] is declared i…

  7. NCrunch ignores xUnit Theory if it is the only test in a file

    I think I've narrowed it down to the following behavior: [list] [*]Test class with one xUnit Fact -- NCrunch does not ignore the fact and runs it [*]Test class with one xUnit Theory -- NCrunch ignores the theory and states there are no tests to run [*]Tesr class with a dummy xUnit Fact (e.g. t…