Forum member

Paranoid

2 posts

Posts by Paranoid

  1. ExplicitAttribute not respected on TestFixture

    Hi, The [url=https://github.com/nunit/docs/wiki/Explicit-Attribute]"Explicit" Attribute[/url] applied on a whole TestFixture is not respected by NCrunch [code=csharp]namespace xyz { using NUnit.Framework; [TestFixture] [Explicit] public class Test { [Test] …

  2. NUnit Testoutput does not contain Lines Written by TestContext.WriteLine()

    Given this Snippet [code=csharp][Test] public void Test() { TestContext.WriteLine("Something"); Console.WriteLine("foo"); Assert.Fail(); }[/code] Resharpers TestRunner outputs [quote]bei Namespace.Class.Test() in C:\...\Class.cs:Zeile 10. Something foo[/quote] NCrunch out…