Test classes must be public
A class containing test methods is not public.
xUnit.net will not run the test methods in a class if the class is not public.
To fix a violation of this rule, make the test class public.
using Xunit;
class xUnit1000
{
[Fact]
public void TestMethod()
{ }
}
using Xunit;
public class xUnit1000
{
[Fact]
public void TestMethod()
{ }
}