Forum member

bartj

26 posts

Posts by bartj

  1. TestCaseSources enumerated unnecessarily

    Hi Remco, Thanks for taking the time to explain the situation and the reasons for it. You mention it's possible to run a test in an existing process, which I wasn't aware of until I read your answer and found this issue: [list][*][url=http://forum.ncrunch.net/yaf_postsm8315_-Run-test-in-exist…

  2. TestCaseSources enumerated unnecessarily

    I am using NCrunch 3.7.0.7 and have run into a problem where running a single test takes a long time because all TestCaseSources are executed before running the test. This happens even when NCrunch is idle, which indicates to me that it has already built the solution and enumerated all the tests. …

  3. Sharing test case source between tests

    What's the likelihood of having this resolved in NCrunch sometime soon? I'd certainly prefer not to have to clutter tests up with a lot of boilerplate code to work around a particular test runner, but will do so if NCrunch isn't going to be improved to avoid it. This does not make for nice test f…

  4. Sharing test case source between tests

    I am getting the following warning in NCrunch: [quote]This project contains multiple NUnit tests that share the same name. This prevents NCrunch from uniquely identifying tests during their discovery and execution, distorting the reporting of test results. Ensure your tests always have a unique…

  5. Colon in NUnit TestCase breaks ExclusivelyUsesAttribute

    Thanks for getting back to me so quickly. We've worked around it by replacing colons with pipes in the TestCase and then performing a string replace on them within the test. This works for now, but is obviously not ideal, particularly because it is easy for developers to forget to apply the worka…

  6. Colon in NUnit TestCase breaks ExclusivelyUsesAttribute

    We would like to use the ExclusivelyUsesAttribute to prevent some issues with parallel execution of some legacy code. However, there appears to be a bug in this feature (NCrunch 1.48.0.5) when a colon is present in NUnit TestCase data. Below is a test that reproduces the issue. The tests should all …