gpt4 book ai didi

c# - 在 MSTest (testConfig) 中使用配置文件

转载 作者:太空宇宙 更新时间:2023-11-03 14:13:08 27 4
gpt4 key购买 nike

我正在尝试在 MSTest 中使用 MyProject.config。我在“部署”(testConfig)中添加了这个文件。访问这些字段的最佳做法是什么?我可以构建类似 Java Properties 的东西吗?

例子:

<host>localhost</host>
<port>0</port>
<user>me</user>

编辑: 我有两个单元测试套件。我想在每个测试中使用不同的配置文件。

最佳答案

ConfigurationManager.AppSettings属性(property)有什么用?试一试,看看它是否有效,如下所示:

string port = System.Configuration.ConfigurationManager.AppSettings("port");

您需要将您的配置文件重构为标准的“App.config”文件,并像这样添加键/值对:

<configuration>
<appSettings>
<add key="port" value="80" />
</appSettings>
</configuration>

关于c# - 在 MSTest (testConfig) 中使用配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7197782/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com