.runsettings文件中的语法错误

时间:2017-09-26 08:01:49

标签: c# asp.net .net unit-testing mstest

我正在尝试使用.runsettings文件中的以下行在代码覆盖中包含一个函数:

<Function>^Fort\.CMS\.CMSPages\.BlogModerator\.GetBlogComments$</Function>

在MSTest项目的.runsettings文件中进行单元测试。但它给出了语法错误,我在这里做错了什么?

这里

**Fort.CMS.CMSPages**  is the *namespace*
**BlogModerator** is the *Class Name*.
**GetBlogComments** is the *function name*

1 个答案:

答案 0 :(得分:0)

MSDN中所述,您的函数声明应该包含参数。 试试这个

<Function>^Fort\.CMS\.CMSPages\.BlogModerator\.GetBlogComments\(\)$</Function>

如果方法没有参数。