Search Results for

    Show / Hide Table of Contents

    Assert.Fail

    The Assert.Fail method provides you with the ability to generate a failure based on tests that are not encapsulated by the other methods. It is also useful in developing your own project-specific assertions.

    Assert.Fail();
    Assert.Fail(string message);
    
    

    Here's an example of its use to create a private assertion that tests whether a string contains an expected value.

    public void AssertStringContains(string expected, string actual)
    {
        AssertStringContains(expected, actual, string.Empty);
    }
    
    public void AssertStringContains(string expected, string actual, string message)
    {
        if (actual.IndexOf(expected) < 0)
            Assert.Fail(message);
    }
    

    See Also

    • Assert.Pass
    • Assert.Ignore
    • Assert.Inconclusive
    • Edit this page
    In this article
    Back to top Generated by DocFX | Copyright (c) 2018- The NUnit Project - Licensed under CC BY-NC-SA 4.0