I am getting three output xml files as result in nunit 3 by running the command nunit3-console "my dlls" --result: "my ouput path".
I need to combine the three results of the files into one xml file. SO I would like to do as
- nunit3-console "dll 1" --result: "path1" %and common xml file%.
- nunit3-console "dll 2" --result: "path2" %and common xml file%.
- nunit3-console "dll 3" --result: "path3" %and common xml file%.
How to achive this via nunit command. Please suggest solution for me.