public void TryValidate_ShouldReturnCorrectValue(string value, bool expectedResult) { mSut.Value = value; Assert.AreEqual(expectedResult, mSut.TryValidate(Substitute.For <IMessageBoxService>())); }