Forum member

brightoniant

8 posts

Posts by brightoniant

  1. Can't run tests with VS 2017 / XBehave 2.2.0-beta0003-build685 / XUnit 2.2

    Hey Remco I thought I had replied to this, but I hadn't! Sorry. That build worked great for me - thanks Cheers Ant

  2. Can't run tests with VS 2017 / XBehave 2.2.0-beta0003-build685 / XUnit 2.2

    Hi Remco I have just submitted another report after ensuring the two steps above have been done, namely I have verified the dll versions and removed the OldXunit2 folder. Still no joy, however. Thanks Ant

  3. Can't run tests with VS 2017 / XBehave 2.2.0-beta0003-build685 / XUnit 2.2

    Hiya I've just submitted the bug report. Hopefully you'll receive it soon. Cheers Ant

  4. Can't run tests with VS 2017 / XBehave 2.2.0-beta0003-build685 / XUnit 2.2

    Hi As a follow on from our chat on Twitter, I'm unable to get NCrunch working with the aforementioned setup. I read on a separate post to try replacing the XUnit dlls in the extension directory with the 2.2 ones, however I have gone from error relating MarshallByRefObject (or whatever it was) …

  5. NCrunch 2.23 causes InvalidProgramException to be thrown with exception filtering

    Great stuff. What was the cause, out of interest?

  6. NCrunch 2.23 causes InvalidProgramException to be thrown with exception filtering

    Hi Remco We are also experiencing this issue. Have you had an opportunity to investigate further? We're running Windows 7, if that makes any difference. We have a catch on a SqlException, when exception.Number == 2627.

  7. Static variables and methods within Owin test server

    Hi Remco Thanks for getting back to me. Your response pointed me to the right direction. The cause is the reuse of the test runner process across tests. The Startup class had a static call to RouteTable.Routes. I introduce a new derived class from Startup and made the call to get the routes a…

  8. Static variables and methods within Owin test server

    Hi We are using the Owin Test Server in our codebase to run boundary tests against our API instance. We have the following line of code within a fixture, and the fixture is used across multiple tests. The tests are written using XBehave, which is backed by XUnit 2. [code=csharp]public TestServ…