Forum member

realmforge_studios

6 posts

Posts by realmforge_studios

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

    wilhelmmedetz's suggestion is definetely a good one and probably prerequisite to my original idea. Even only information about concurrent execution and test order can help narrowing down randomly failing tests. Note, that although its good to know what tests were running in this particular test r…

  2. disable timeouts when debugging

    I am experiencing the same problem. Here is a simple test case to reproduce the problem: [TestFixture] public class Test { [Test] [Timeout(1)] public void TestTimeout() { } } Put a breakpoint in the line with the openinig bracke…

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

    Just want to add: This feature is not only helpfull finding concurrent problems, but also problems because of access to static variables which aren't cleared properly after the test.

  4. NCruch crashes (instead of failing) when test code contains stack overflows

    Thank you for the reply. In the meantime, I found [url=http://blogs.msdn.com/b/alejacma/archive/2011/02/18/how-to-disable-the-pop-up-that-windows-shows-when-an-app-crashes.aspx]this site[/url] to reduce the UI gutter of the repeadetly failing tests. Its a howto to turn off the crash popup UI. Un…

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

    I would like to have some support for finding problems with tests running concurrently. When testing complex applications, it happens that some parts of the code unintentionally access shared resources during unit tests (e.g. writing/reading to a common config file). This makes tests failing unpr…

  6. NCruch crashes (instead of failing) when test code contains stack overflows

    - Install NCrunch 1.45.0.12 - Open VS2012, new Project, C# Class Library - NuGet - install NUnit - open the pre-generated Class1.cs and replace it with the following code: using NUnit.Framework; namespace Test { [TestFixture] public class Class1 { [Test] publ…