How can I delete tests in Nunit when I loaded the Project From Visual Studio

427 Views Asked by At

I am attempting to automate tests using Nunit and have loaded a project from Visual Studio. I do not understand how to delete Tests i do not want in my project. I know I can choose not to run tests but when i am automating the tests I will need some of them to be gone completely. I have checked the Nunit documentation and googled this question and have yet to find the answer. I do not want to use additional third party tools. Can anyone help with this question?

2

There are 2 best solutions below

1
On

Your test probably looks something like this...

[TestFixture]
public class Tests()
{
    [Test]
    public TestYouWantToDelete()
    {
        \\ You Test Code
    }
}

Remove

[Test]
public TestYouWantToDelete()
{
    \\ You Test Code
}

You could also comment it out and it wouldn't be picked up by the testrunner.

Also you could change the Assert to Assert.Ignore(); if you might want to get it working again later.

0
On

Simply comment the [Test] attribute. Something like the following:

[TestFixture]
public class TestsFixture()
{
    //[Test]
    public TestYouWantToDelete()
    {
        \\ You Test Code
    }
}

without [Test] attribute test code doesn't have any value. It will not simply run