当我打开测试资源管理器时,我看不到我的测试,即使在重建之后也是如此。我可以使用运行测试dnx . test
,它们按预期运行。
project.json file
下面列出了我的。我将 ASP.Net 5 beta6 与 xUnit 2 和 Visual Studio 2015(beta 6)一起使用。
{
"version": "1.0.0-*",
"description": "ClassLibrary1 Class Library",
"authors": [ "jriegel" ],
"tags": [ "" ],
"projectUrl": "",
"licenseUrl": "",
"dependencies": {
"System.Collections": "4.0.10",
"System.Linq": "4.0.0",
"System.Threading": "4.0.10",
"System.Runtime": "4.0.20",
"Microsoft.CSharp": "4.0.0",
"xunit": "2.1.0-beta3-*",
"xunit.runner.dnx": "2.1.0-beta3-*"
},
"commands": {
"test": "xunit.runner.dnx"
},
"frameworks": {
"dnx451": { },
"dnxcore50": { }
}
}