This method verifies that the specified object is an instance of the specified type.
Example
Test class implements a specific interface.
var result = typeof(MyClass).GetInterfaces()[0];
// Assert
Assert.IsInstanceOfType(typeof(IMyClass), result.GetType());