Reputation: 345
i have c# nunit testing project, i need to send parameters from the job to the C# test suite.
what i did in my testing code:
string value= Environment.GetEnvironmentVariable("Name");
in the Jenkins side:
and didn't success to get the value.
any help ?
Thanks
Upvotes: 1
Views: 1768
Reputation: 103
You can select 'This project is parameterized' checkbox and add required parameter from list.
Upvotes: 1