Visual Studio 2008 Test View Panel Not Showing All Tests - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T12:24:39Zhttp://stackoverflow.com/feeds/question/273174http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/273174/visual-studio-2008-test-view-panel-not-showing-all-tests1Visual Studio 2008 Test View Panel Not Showing All TestsNotMyself2008-11-07T18:52:39Z2009-06-29T14:36:35Z
<p>I have a set of 6 MSTest test assemblies. When I bring up the Test View window and group by Project all of my projects show up save one. I cannot seem to make Visual Studio understand that this project is a unit test assembly.</p>
<p>Resharper's Unit Test Runner has no problem identifying this sixth assembly. So the assembly is fine from that stand point.</p>
<p>How does Visual Studio 2008 determine that an assembly is a unit test assembly?</p>
<p>I have compared the csproj files and found nothing out of the ordinary.</p>
http://stackoverflow.com/questions/273174/visual-studio-2008-test-view-panel-not-showing-all-tests/273247#2732474Answer by NotMyself for Visual Studio 2008 Test View Panel Not Showing All TestsNotMyself2008-11-07T19:10:13Z2008-11-07T19:10:13Z<p>When creating a "Test" project in Visual Studio, the following element is added to the csproj xml in the very first PropertyGroup element:</p>
<pre><code> <ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};
{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
</code></pre>
<p>If you created your test assembly by hand, say by creating a new Class Library and adding a reference to Microsoft.VisualStudio.QualityTools.UnitTestFramework, this element will not be in your csproj file and visual studio will ignore all the tests located inside.</p>
<p>Add the element and all will be good again.</p>