Assert.IsNull tests that an object is null.
Assert.IsNull(object obj, string message=null, params object[] args);
You may use Assert.That to achieve the same result. The two statements below are equivalent:
Assert.IsNull(anObject);
Assert.That(anObject, Is.Null);