18

How can I set the DisplayName of a Data Row in data driven tests, where the data source is a XML and the provider is Microsoft.VisualStudio.TestTools.DataSource.XML.

XML:

<?xml version="1.0" encoding="utf-8" ?>
<environments>
    <environment><name>IE</name></environment>
    <environment><name>Chrome</name></environment>
</environments>

App Config:

<!-- CONNECTION STRINGS SETTINGS -->
<connectionStrings>
    <add name="IE_Chrome" connectionString="IE_Chrome.xml" providerName="Microsoft.VisualStudio.TestTools.DataSource.XML"/>
</connectionStrings>
<!-- PARAMETERIZING TEST SETTINGS -->
<microsoft.visualstudio.testtools>
    <dataSources>
        <add name="IE_Chrome" connectionString="IE_Chrome" dataTableName="environment" dataAccessMethod="Sequential"/>
    </dataSources>
</microsoft.visualstudio.testtools>

The Output:

enter image description here

I'd like to display the Environment Name instead of "Data Row 0".

1 Answer 1

2

Is it possible with a custom data source attribute. An example can be:

public class XmlCustomDataSourceAttribute : Attribute, ITestDataSource
{
    public IEnumerable<object[]> GetData(MethodInfo methodInfo)
    {
        foreach (var environment in YourStaticXmlParser.GetEnvironments())
        {
            yield return new object[] { environment.Name };
        }
    }

    public string GetDisplayName(MethodInfo methodInfo, object[] data)
    {
        if (data != null)
        { 
            return string.Format("Target Environmment- {0} ({1})", methodInfo.Name, data[0]); 
        }

        return null;
    }
}

and the test method should look like:

        [DataTestMethod]
        [XmlCustomDataSource]
        public void Should_Blur(string environmentName)
        {
            var actualEnvironment = SomeMethodToGetActualEnvironment();
            Assert.AreEqual(environmentName, actualEnvironment);
        }

Finally your test detail will be: enter image description here

Sign up to request clarification or add additional context in comments.

1 Comment

A complete demo solution can be found here: github.com/matei-tm/howto-demos/tree/main/…

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.