
A unit test generation extension for Visual Studio that aims to always produce code that compiles - covering the basic cases automatically and preparing as much as it can for the complex cases.
Get the extension from the Visual Studio Marketplace:
Alternatively see the releases on GitHub:
Demonstrates how Unitverse generates tests when the source class is static
public static class TestClass
{
    public static void ThisIsAMethod(string methodName, CultureInfo methodValue)
    {
        System.Console.WriteLine("Testing this");
    }
    public static string WillReturnAString()
    {
        return "Hello";
    }
    public static int ThisIsAProperty { get; set; }
    public static string GetITest { get; }
}
public static class TestClassTests
{
    [Fact]
    public static void CanCallThisIsAMethod()
    {
        // Arrange
        var methodName = "TestValue534011718";
        var methodValue = CultureInfo.InvariantCulture;
        // Act
        TestClass.ThisIsAMethod(methodName, methodValue);
        // Assert
        throw new NotImplementedException("Create or modify test");
    }
    [Fact]
    public static void CannotCallThisIsAMethodWithNullMethodValue()
    {
        FluentActions.Invoking(() => TestClass.ThisIsAMethod("TestValue1002897798", default(CultureInfo))).Should().Throw<ArgumentNullException>().WithParameterName("methodValue");
    }
    [Theory]
    [InlineData(null)]
    [InlineData("")]
    [InlineData("   ")]
    public static void CannotCallThisIsAMethodWithInvalidMethodName(string value)
    {
        FluentActions.Invoking(() => TestClass.ThisIsAMethod(value, CultureInfo.InvariantCulture)).Should().Throw<ArgumentNullException>().WithParameterName("methodName");
    }
    [Fact]
    public static void CanCallWillReturnAString()
    {
        // Act
        var result = TestClass.WillReturnAString();
        // Assert
        throw new NotImplementedException("Create or modify test");
    }
    [Fact]
    public static void CanSetAndGetThisIsAProperty()
    {
        // Arrange
        var testValue = 1412011072;
        // Act
        TestClass.ThisIsAProperty = testValue;
        // Assert
        TestClass.ThisIsAProperty.Should().Be(testValue);
    }
    [Fact]
    public static void CanGetGetITest()
    {
        // Assert
        TestClass.GetITest.Should().BeAssignableTo<string>();
        throw new NotImplementedException("Create or modify test");
    }
}