Assert.IsEmpty tests that a string or collection is empty.
Assert.IsEmpty(string aString, string message=null, params object[] args);
Assert.IsEmpty(IEnumerable aCollection, string message=null, params object[] args);
You may use Assert.That to achieve the same result. The two statements below are equivalent:
Assert.IsEmpty("");
Assert.That("", Is.Empty);