Forum member
Paranoid
2 posts
Posts by Paranoid
-
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] …
21 Jun 2017 13:05 UTC
-
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…
09 Jun 2017 08:06 UTC