I have a project ASP.NET core which I integrate unit test with xUnit , Everything work fine but I want to genrate xml report test to integrate in jenkins . Any help please :)
My project.json is :
{
"version": "1.0.0-*",
"testRunner": "xunit",
"dependencies": {
"xunit": "2.2.0-beta2-build3300",
"Microsoft.NETCore.App": "1.1.0",
"dotnet-test-xunit": "2.2.0-preview2-build1029"
},
"frameworks": {
"netcoreapp1.0": {
"dependencies": {
}
}
},
"runtimes": {
"ubuntu.16.04-x64": {},
"win10-x64": {},
"debian.8-x64": {},
"win81-x64": {}
}
}
I'm using the plugin xunit jenkins to display my result test . If their are another way tell me .