Search Results for

    Show / Hide Table of Contents

    TestOf

    The TestOf attribute adds information about the class that is being tested. It can be applied to test fixtures and to tests.

    The constructor takes the string name or the type of the class being tested. TestOf can also be specified on a TestFixture or Test attribute.

    [TestFixture]
    [TestOf(typeof(MyClass))]
    public class MyTests
    {
     [Test]
     public void Test1() { /* ... */ }
    
     [Test]
     [TestOf(nameof(MySubClass))]
     public void Test2() { /* ... */ }
    }
    
    [TestFixture(TestOf = typeof(MyClass))]
    public class MyOtherTests
    {
     [Test]
     public void Test1() { /* ... */ }
    
     [Test(TestOf = typeof(MySubClass))]
     public void Test2() { /* ... */ }
    }
    
    Note

    You can currently only have one TestOf attribute per fixture or test.

    • 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