Forum member

aignas

5 posts

Posts by aignas

  1. Fail tests when the fixture dispose throws

    Hi, I'm using XUnit with NCrunch (both are latest versions) and everything is really nice. However, I recently had a hard to debug issue where the fixture was throwing in Dispose but the test was still marked as passed. Because it was not the behaviour on the build server, it was rather strang…

  2. Problems using FsCheck arbitraries

    Hello Remco, The test code that was posted above has an multithreading issue because of the fact that I was using a static constructor to register the arbitraries. Once the constructor is made non-static, everything works as intended. I guess FsCheck has a steep learning curve for a non F# progra…

  3. Problems using FsCheck arbitraries

    I have raised an issue on the FsCheck github page as well: https://github.com/fscheck/FsCheck/issues/398

  4. Problems using FsCheck arbitraries

    Hello, I have some problems, when using Arbitraries from the FsCheck package. I am not sure if this is a problem in NCrunch or FsCheck itself, but it might be a concurrency issue, as it does not happen in R# runner when the property tests are run sequentially. The project file: [code=xml]<Pro…

  5. NCrunch Atomic attribute

    Hello, I have a question on how one of the latest additions to NCrunch works regarding the XUnit v2 fixtures. I am trying out the Atomic for running acceptance tests, that have fixtures with really long setup times because a lot of data is being loaded into memory. When I am running it with R#…