You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Continuing to file small tickets so that each ticket can be picked up by different people in parallel, if need be.
Both Assert.That(string.IsNullOrEmpty(myString)); and Assert.That(myString.IsNullOrEmpty()); could be converted to Assert.That(myString, Is.Null.Or.Empty);.
Not sure what a good title for this diagnostic would be, though.
The text was updated successfully, but these errors were encountered:
Continuing to file small tickets so that each ticket can be picked up by different people in parallel, if need be.
Both
Assert.That(string.IsNullOrEmpty(myString));
andAssert.That(myString.IsNullOrEmpty());
could be converted toAssert.That(myString, Is.Null.Or.Empty);
.Not sure what a good title for this diagnostic would be, though.
The text was updated successfully, but these errors were encountered: