6

在现有解决方案中,我添加了一个新的测试项目。在我的测试项目 .cs 文件中,我有一个用 [TestClass] 属性修饰的类和一个用 [TestMethod] 属性修饰的方法。我已经验证了在配置管理器中为测试项目选中了构建复选框(正如我的谷歌搜索显示的那样,其他人遇到了这个问题)。我已将测试项目设置为解决方案的启动项目。当我尝试开始测试时,我得到“无法启动测试项目,因为该项目不包含任何测试”。我对单元测试真的很陌生。我错过了什么?

[TestClass]
public class UnitTest1
{
    [TestMethod]
    public void TestMethod1()
    {
       Whole bunch of stuff
       Assert.Inconclusive("Done");
    }
 }

更新:所以我打开了一个新的 VS 实例,转到 File => New => Project => Test Project。没有触摸或编辑任何东西。直接进入cs文件,这里是它的全部内容:

using Microsoft.VisualStudio.TestTools.UnitTesting;

namespace TestProject2
{
 public class Inspection
 {
    public bool SubmitInsp()
    {
        return true;
    }
 }

 [TestClass]
 public class UnitTest1
 {
    [TestMethod]
    public void TestMethod1()
    {
        Inspection insp = new Inspection();
        bool result = insp.SubmitInsp();

        Assert.IsTrue(result);
    }
 }
}

当我尝试启动它时,关于该项目的相同错误不包含任何测试。还在构建输出“无法加载文件或程序集 '~\my documents\visual studio 2010\Projects\TestProject2\bin\Debug\TestProject2.dll' 或其依赖项之一。不支持操作。(来自异常HRESULT: 0x80131515)"

我不知道单元测试比这简单得多。有没有搞错???

4

6 回答 6

5

当一个工作测试项目中的测试突然不再被识别时,我遇到了同样的问题。

将项目文件与另一个工作测试项目中的文件进行比较,我发现主 <PropertyGroup> 节点中缺少 <ProjectTypeGuids> 节点。

在 <PropertyGroup> 节点中添加这一行解决了我的问题:

C#:

<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>

VB:

<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{F184B08F-C81C-45F6-A57F-5ABD9991F28F}</ProjectTypeGuids>
于 2012-10-31T13:23:44.330 回答
5

我可以通过修改此处找到的devenv.exe配置文件来使其工作:

C:\Program Files\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe.config.

将以下行添加到该<runtime>部分,然后重新启动 Visual Studio:

<loadFromRemoteSources enabled = "true" />

(这是帮助我的链接)

于 2012-10-19T15:25:29.637 回答
2

The FrstCBC's anwser did not worked for me. I am on a VirtualBox machine with Windows 7 64 bits and Visual Studio 2012.

I had to move the output to a local folder : open the unit tests project properties and in the Build tab, browse the Output path to a local folder. The tests are now detected and can be run.

于 2014-01-11T22:00:48.673 回答
1

对我来说,只是我的课程和方法没有public(我意识到海报确实有public,但我通过谷歌搜索找到了这篇文章“testclass testmethod margin icons missing”)。我的愚蠢错误,但也许它会帮助其他人。

于 2014-10-10T23:34:30.193 回答
1

保存到网络文件夹或我计算机本地任何位置的测试项目存在此问题。创建了另一个测试项目并将其保存到我的闪存驱动器中,工作正常。我不知道是因为我的机器是 64 位还是因为它是虚拟机或什么,但我想我只需要在外部存储设备上测试所有内容。

于 2012-08-30T16:01:03.663 回答
0

确认所有 .cs 文件在“属性”窗口中都标记为“编译”。如果它被标记为内容,那么你会遇到这个问题。

于 2014-10-21T00:13:25.233 回答