Example #1
0
        public void ShouldSetMessageWithPendingReasonWhenPending()
        {
            _results.Pend("reason");

            Assert.That(_results.Result, Is.TypeOf(typeof(Pending)));
            Assert.That(_results.Message, Is.EqualTo("reason"));
        }