Search code examples
c#asp.netasp.net-mvcnunitnunit-3.0

Blank output for an ASP.NET NUnit test application


I am currently working with NUnit to write test cases for an ASP.NET application.

I have created a sample test project and have added NUnit latest version (3.6.1) and NUnitTestAdapter 2.1.1.

If I run the application by clicking on menu TestWindowsText Explorer, I am getting a blank screen in the Output Window. Why?

My code is:

[TestFixture]
public class SampleTest
{
    [Test]
    public void StringCheck()
    {
        string str = "Hello";
        Assert.That(str, Is.EqualTo("Hello"));
    }

    [Test]
    public void EmptyCheck()
    {
        string str = "siva";

        Assert.That(str, Is.EqualTo(string.Empty));
    }

    [Test]
    public void NumberCheck()
    {
        int i = 0;
        Assert.That(i, Is.EqualTo(0));
    }
}

Solution

  • I found the solution. The problem was with NUnit version (3.6.1). Now I am updated with NUnit 2.6.4. It is working for me.