Forum member

wilhelmmedetz

35 posts

Posts by wilhelmmedetz

  1. ExpectedException inheritance ingored

    When using the MSTest ExpectedException NCrunch seems to ignore the attribute in derived methods. See the following example. The tests run with MSTest, but fail with NCrunch. regards Wilhelm public abstract class ExpectedExceptionTestsBase40: TestFrame { [ExpectedExc…

  2. Issue with 'Copy Referenced Assemblies To Workspace'

    Would be fine if it is fixed in the next release. The current workaround is to use assembly specific config files, which have different names, and to include the NLog.config info in these config files. Greetings Wilhelm

  3. Issue with 'Copy Referenced Assemblies To Workspace'

    I have the following problem: Project A has a specfic NLog.config file. TestProject B references Project A. Project B has a different NLog.config file. For project B 'Copy Referenced Assemblies To Workspace' is selected. The workspace folder of project B now contains the NLog.config file fr…

  4. Ability to display test output in text window

    We use extensive logging information to analyze test failures. Currently the test output is only displayed in a split window of the tests window. This makes reading and analyzing long test outputs (especially with long lines) rather difficult. Therefore it would be nice to be able to display t…

  5. Attribute for "Terminate Test Runner Tasks When All Test Execution Is Complete"

    Hi Remco, Thanks for the quick answer. I am already using the Isolated attribute - but it did not help. Regards Wilhelm

  6. Attribute for "Terminate Test Runner Tasks When All Test Execution Is Complete"

    Hi, I have some tests (integration tests incorporating WCF and AppDomains) that do not work when a test runner is reused for more than one test. Thus it would be nice if I could specify for these tests "Terminate Test Runner Tasks When All Test Execution Is Complete". It could be specified …

  7. Support for detecting test failing because of concurrent test problems

    I think, any information about test execution would help. Not only which tests were exected in parallel, but also which tests were executed in within the same test runner before failing test.

  8. Issue status

    Hi Remco, The 'Submit Bug Report' feature works nice, but it has one major drawback - there is no status feedback. It would be nice to have some kind of a general issue/feature list with the following information: Submitted issues, duplicate issues, issue/feature acceptance, reproducibili…

  9. |DataDirectory| should point to deployment folder

    When using |DataDirectory| to configure SQL server connection strings with MSTest |DataDirectory| usually points to the deployment directory. With NCrunch |DataDirectory| currenty points to the build folder. Could you please change this to make it MSTest compliant (AppDomain.CurrentDomain.SetD…

  10. Move AutoEnableOnStartup to ncrunchsolution.user file

    Some times (code refactoring) it is desirable to temporarily disable NCrunch. As the AutoEnableOnStartup switch is stored in the ncrunchsolution file, each time NCrunch is enabled/disabled the ncrunchsolution file will change. As the ncrunchsolution file is stored in the source code repository…

  11. Test process with timeout failure hangs after debugging

    Reproduction steps: 1) Create a test that fails with a timeout. 2) Debug the test. 3) Stop the Debugger. 4) NCrunch displays 1 test was failing 1 test is being processed The Status of the test run process in the Processing Queue remains "Processing" 5) When you want t…

  12. Deploy NCrunch.Framework.dll as a NuGet package

    Could you deploy NCrunch.Framework.dll as a NuGet package. It would make deploying NCrunch.Framework.dll for multiple users easier. Regards Wilhelm

  13. Webservice coverage with NCrunch, possible?

    If your web service is a WCF service you could self-host the service inside your test project. Then you will get code coverage results for the WCF service. Integration testing WCF self Hosting would also allow you to test additional functionality like: * Fault behavior * Service reference impl…

  14. Parallel test execution constraints question

    I would like to express the following constraints: There are 4 tests: A1, A2, B1, B2 A1 and A2 can be run in parallel B1 and B2 can be run in parallel Any A* tests can not be run in parallel with any B* tests Is it possible to express this constraint with the InclusivelyUses/Exclusively…

  15. Feature requests

    Hi, NCrunch is a great piece of software and makes development a real joy. Below some feature requests, that would make using it easier (in my humble opinion). [list] [*] Use different icons for build/test errors in the "Tests Window" [*] Start builds after a specifiable treshold when no ke…