NUnit.Framework.Assert.IsInstanceOf(System.Type, object, string, params object[])

Here are the examples of the csharp api class NUnit.Framework.Assert.IsInstanceOf(System.Type, object, string, params object[]) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Example 7

1. Example

Project: DevExpress.Mvvm.Free
Source File: AssertHelper.cs
public static void IsInstanceOf(Type expected, object actual, string message, params object[] args) {
            Assert.IsInstanceOf(expected, actual, message, args);
        }