System.Diagnostics.Tests.DebugTests.Fail C# (CSharp) Method

Fail() private method

private Fail ( ) : void
return void
        public void Fail()
        {
            VerifyAssert(() => { Debug.Fail("something bad happened"); }, "something bad happened");
            VerifyAssert(() => { Debug.Fail("something bad happened", "really really bad"); }, "something bad happened", "really really bad");        
        }