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?
How can I delete tests in Nunit when I loaded the Project From Visual Studio
427 Views Asked by user1622681 At
2
Your test probably looks something like this...
Remove
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.