Forum member

bgeihsgt

8 posts

Posts by bgeihsgt

  1. ASP.NET vNext xUnit project Hangs on 'NCrunch engine is initialising'

    We are working with an asp.NET vNext solution in the following setup: - One asp.NET project, one test project - targeting ASP.NET 5 - Visual Studio CTP 6 - kvm beta3 - xunit RC3 with beta support for aspnet v5 I went ahead and gave NCrunch a whirl in this solution fully expecting it not to…

  2. NCrunch can't find Record.ExceptionAsync with latest version of xUnit

    Thanks for the private build, Remco. Really appreciate it. Since installing the private build, we've been noticing that NCrunch will spin indefinitely without doing any work. We're doing xUnit in Static analysis mode. I've tried to switch to dynamic but that ends up with its own problems. Anythi…

  3. NCrunch can't find Record.ExceptionAsync with latest version of xUnit

    Thanks Remco -- The RC2 is available here. An early build of NCrunch would be awesome, thanks! http://xunit.github.io/release-notes/2015-02-17.html

  4. NCrunch can't find Record.ExceptionAsync with latest version of xUnit

    Thanks Remco. Running against the bleeding edge of xUnit is important to our team because Brad Wilson is on our team :P I guess I'll just wait until the next build of NCrunch comes with a stable release of xUnit. Should I say anything to Brad relating to this (i.e. should I tell him not to move t…

  5. NCrunch can't find Record.ExceptionAsync with latest version of xUnit

    Repro: Create an xUnit test with Record.ExceptionAsync against the latest build of xUnit (build 2857). Result: This test will always fail in NCrunch because it can't find Record.ExceptionAsync in xunit.core. After some investigation, the Record class was moved in to core 5 days ago via t…

  6. xUnit 2.0 Theory with nullable enum broken

    Remco, can you comment on the issue I filed in xUnit here: https://github.com/xunit/xunit/issues/268 It's unclear from your explanation what the problem actually is.

  7. xUnit 2.0 Theory with nullable enum broken

    Great, thanks Remco for your timely help!

  8. xUnit 2.0 Theory with nullable enum broken

    I've come across an issue where NCrunch can't run xUnit 2.0 tests using a nullable enum as a parameter to a theory. Example repro: [code=csharp] public enum Foo { First, Second } [Theory] [InlineData(null)] …