AutoFake icon indicating copy to clipboard operation
AutoFake copied to clipboard

Unexpected recursion

Open Serg046 opened this issue 3 years ago • 0 comments

[Fact]
public void When_incorrect_string_arg_Should_add_quotes_to_output()
{
    var fake = new Fake<StringBuilder>();

    var sut = fake.Rewrite(f => f.AppendLine());

    sut.Execute();
}

Serg046 avatar Aug 18 '22 20:08 Serg046