Assert.IsTrue tests that a boolean condition is true.
Assert.IsTrue(bool condition, string message=null, params object[] args);
You may use Assert.That with a boolean argument to achieve the same result. The two statements below are equivalent:
Assert.IsTrue(someCondition);
Assert.That(someCondition, Is.True);