我正在尝试使用.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*
答案 0 :(得分:0)
如MSDN中所述,您的函数声明应该包含参数。 试试这个
<Function>^Fort\.CMS\.CMSPages\.BlogModerator\.GetBlogComments\(\)$</Function>
如果方法没有参数。