AutoFixture ThrowingRecursionBehavior fix 

To fix error in tests add followings lines of code. Example in xUnit:

[Fact]
public void Test()
{
    // Arrange
    var fixture = new Fixture();
    fixture.Behaviors.OfType<ThrowingRecursionBehavior>()
        .ToList()
        .ForEach(b => fixture.Behaviors.Remove(b));
    fixture.Behaviors.Add(new OmitOnRecursionBehavior());

    // Create an instance of the object you want to test
    var yourObject = fixture.Create<yourObjectClass>();

    // Act
    // Assert
}

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s

%d bloggers like this: