After digging a bit, I could not find a way to actually view the results from the test explorer window. So the best I can do is give you an alternative.
What you need to do is run your test using the program vstest.console.exe, which works almost exactly the same as from VS. You can find it under
C:\Program Files(x86)\Microsoft Visual Studio 12.0\Common7\IDE\CommonExtensions\Microsft\TestWindow\vstest.console.exe
run this from your cmd / terminal and configure it as you would like. You can enable logging, files are saved in the TestResults folder in the same folder as above, and you can see your results. An example test run will look like this:
vstest.console.exe D:\(Path To my Test)\(My Tests dll file).dll /Settings:D:(Path tO my Tests)\(My Test settings file).testsettings /logger:trx
Mo H. source share