Asserts\TypeAssertsTests.cs (5)
687 var result = Record.Exception(() => Assert.IsType(typeof(object), null, exactMatch: false));
703 Assert.IsType(typeof(InvalidCastException), ex, exactMatch: false);
711 Assert.IsType(typeof(Exception), ex, exactMatch: false);
719 Assert.IsType(typeof(IDisposable), ex, exactMatch: false);
737 () => Assert.IsType(typeof(InvalidCastException), new InvalidOperationException(), exactMatch: false)