I want to disable the Microsoft.VisualStudio.TestTools.TestTypes.Unit.TestFailedException when I am debugging my unit tests. The problem is when I open the Exceptions dialog in Visual Studio I can't find this Exception. Does anyone know how to stop this exception from being thrown?
views:
63answers:
1
A:
You should be able to "Add" the Exception type. In that Exceptions dialog for debugging,
- Click "Add..."
- Set Type to CLR Exceptions
- Enter the full name, including the namespace... so "Microsoft.VisualStudio.TestTools.TestTypes.Unit.TestFailedException"
- Click OK
Hope that does it for you!
Jeff Wilcox
2009-08-06 04:37:02