Search Results for

    Show / Hide Table of Contents

    InstanceOfType Constraint

    InstanceOfTypeConstraint tests that an object is of the type supplied or a derived type.

    Constructor

    InstanceOfTypeConstraint(Type)
    

    Syntax

    Is.InstanceOf(Type)
    Is.InstanceOf<T>()
    

    Examples of Use

    Assert.That("Hello", Is.InstanceOf(typeof(string)));
    Assert.That(5, Is.Not.InstanceOf(typeof(string)));
    
    Assert.That(5, Is.Not.InstanceOf<string>());
    
    • 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