Hopefully a nice n simple one for you
Running some tests in VS2010's testing framework. When an exception is thrown somewhere inside it, the results screen shows nothing of the details.
Simplest example:
[TestMethod]
public void DoTest()
{
int y = 10 - 10;
int x = 10 / y;
}
Test method MyProj.DoTest threw exception: ...
You can't see it here, but before the '...' there is some sort of special hidden character (displays as a square). How can I view the details, and ideally, the stacktrace.