Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Test Driven .NET won't use NUnit addins

I am experiencing a problem with running NUnit via the Test Driven .NET plugin with Visual Studio 2008. I have an addin that when I use the NUnit GUI, works just fine. However, the addin doesn't seem to work when run NUnit through TDD.NET. I've tried a few things, such as updating to the lastest version, and placing the addin into TDD.NET's copy of NUnit, and modifying the TDD.NET nunit.config file to point at another copy nunit. None of these strategies work. What am I missing? Thanks in advance!

like image 979
Delmania Avatar asked Jan 24 '11 19:01

Delmania


People also ask

How do I run NUnit tests in Visual Studio 2015?

From within Visual Studio 2012, 2013 or 2015, select Tools | Extension Manager. In the left panel of the Extension Manager, select Online Extensions. Locate (search for) the NUnit Test Adapter in the center panel and highlight it. Click 'Download' and follow the instructions.

Is NUnit a test runner?

The NUnit test runner contains the program entry point to run your tests. dotnet test starts the test runner using the unit test project you've created.


1 Answers

check following things :

1) make sure your cursor is inside the test method of the test class.
2) make sure you view build panel and in the top combo box the value build is present. Make sure u change the build value to test.

And see if any test result is visible also try reading documentation of the plugin

http://www.testdriven.net/quickstart.aspx

like image 50
Vikram Shetty Avatar answered Oct 11 '22 22:10

Vikram Shetty