Tests do not show when an interface is implemented
Brought to you by:
tlaukkan
I can successfully view tests in the Visual Nunit viewer normally, however, if I have a class similar to the following in my code, they no longer appear:
public class MyClass: IDisposable
{
public MyClass()
{
}
void IDisposable.Dispose()
{
//Dispose objects
}
}
There is nothing here that should stop Visual NUnit being able to show the tests. I have the latest version of everything and have tested on multiple machines. Any ideas? If there is a solution to this problem and you can instruct me where to place it within your source, I am happy to recompile the source personally before the next release.
Regards