c#mstest测试查询数据库在读取config时抛出FileNotFoundException的方法

问题描述 投票:0回答:1

我想创建一个测试项目并导入一个解决方案(解决方案A),这样我就不需要在解决方案中添加测试项目了。我想将测试项目和其他项目分开,因为我不希望SVN知道我已创建它。

当我测试一个通过Entity Framework从数据库查询数据的方法时。它抛出异常:

Could not load file or assembly 'System.Configuration.ConfigurationManager, Version=0.0.0.0, Culture=neutral, PublicKeyToken=*************'. The system cannot find the file specified.

但我检查了Dependencies-> SDK-> Microsoft.NETCore App(2.1),我找到了System.Configuration.dll。

发生什么事了?我搜索堆栈溢出,并尝试从解决方案A复制配置到测试项目。但它不起作用。

c# configuration mstest
1个回答
0
投票

我发现了两个原因:

  1. 我使用.net核心项目(测试项目)来调用标准的net framework项目中的方法。
  2. 所有测试项目都需要在Nuget中安装ConfigurationManager。

======================更新我上面的答案=================

我放弃使用mstest来做到这一点。

我发现了另一种方法,但它似乎有点愚蠢。我直接在控制器中编写了测试方法。

首先,声明一个TestBean。

public TestBean(string name, string suppose, string fact, object msg = null)
{
    this.name = name;
    this.suppose = suppose;
    this.fact = fact;
    pass = suppose == fact;
    if (SHOW_MSG)
        this.msg = msg;
    else
        this.msg = null;
}

在控制器中使用这样的bean:

[HttpGet]
public string TestAll(){
    JObject obj = (JObject)JsonConvert.DeserializeObject(TestMethod());
    TestBean beans = new TestBean[]{
        new TestBean('TestMethod',true+"",obj+"",obj)
    };
    return JsonConvert.SerializeObject(beans);
}

当我访问url localhost:... / TestAll时,我会得到json

[
    {
        "pass":true,
        "name":"TestMethod",
        "suppose":"True",
        "fact":"True",
        "msg":"True"
    }
]

老实说,它不容易使用,特别是当测试用例频繁更改时。

© www.soinside.com 2019 - 2024. All rights reserved.