I've been trying to find something on this but can't see what the problem is. If I use the code below, with nothing added all my tests disappear. If I remove the AutoData attribute, they all come back. I've seen somewhere that it may have something to do with the dependency of AutoFixture on xunit.extensions (AutoFixture in F#) but the answer wasn't clear enough for me to be able to solve my problem. I'm using xunit in a C# MVC5 project.
I ran Add-BindingRedirect (as mentioned in that link) and in fact xunit.extensions were not in the app.config at all so I added it in, but it made no difference... so I'm not sure where to go from there. Any advice?
[Theory, AutoData]
public void AutoFixtureAutoData(int number1, int number2)
{
}