I have a set of unit tests in a .NET Core project and using a runsettings file. I am trying to setup Azure DevOps to do automated testing on my deployments. As part of this process, I need to override parameters from the run settings on the command line.
I have a runsettings file with the following section:
<TestRunParameters>
<Parameter name="ApiUrl" value="https://myurl..." />
</TestRunParameters>
I have a static constructor that saves the TestContext like this:
[ClassInitialize]
public static void TestClassInitialize(TestContext context)
{
TestContext = context;
}
I am retrieving settings from the TestContext with the following method:
protected string GetStringSetting(string settingName)
{
return TestContext.Properties[settingName] as string;
}
When I run the test with the runsettings file selected, it gets the TestContext and I see the ApiUrl entry is retrieved successfully.
Now, I want to set this parameter from the command line. I am using a command like:
dotnet test <myproject.csproj> --configuration Release -- ApiUrl=https://newurl
I get an error that says the dictionary does not contain the key "ApiUrl" which indicates that the setting was not processed. From reading documentation, I thought that maybe I need to fully specify the name of the setting with TestRunParameters.ApiUrl. This gives me an XML error.
From everything I have read, I think I am doing this right and can't figure out what is wrong. I am using version 2.1.503 of the tools.
Can someone please give me guidance on how to make this work?
You could inject environment variables from your pipeline to overcome the limitations of the
dotnet test
command. By doing so, you will not need to deal with a temporary *.runsettings file to get your test parameters. You can set environment variables from your CI pipeline and then retrieve them in your tests at runtime.Your YAML file could set environment variables:
Your test can retrieve environment variables: