I have created my automation framework in Visual Studio 2015 in C# , now I want to automate execution of subset of my all test scripts , how can I achieve this?
I have created my test scripts as unit test in C# , tried using Nunit but that it has a different architecture and all test methods need to be in a file, I have different files for a test method that is basically a test scenario, I have some common libaries of user defined functions that all
test scripts are referring.
Please suggest a way to achieve auto execution of selected test scripts, either through command line that can be used to create a batch file of selected scripts or any way.
Thanks for your help.
Thanks