Assert.Inconclusive() in NUnit is not marked as a terminating method in RS
private string GetString()
{
return null;
}
public void CanDoSomething()
{
string foo = Math.Min(1, 2) > 1 ? null : string.Empty;
if(foo==null)
Assert.Inconclusive();
//Warning Possible System.NullReferenceException
foo.Replace("a", "b");
}
Is this a RS bug? Known? (couldn't find anything about it in youtrack).
Thanks.
Please sign in to leave a comment.
Fixed in ReSharper 6.0 Thank you for the feedback.