Is there a way to change the section header in the Metadata Prompt? Currently it always shows the full name of the object providing the Metadata parameters (in this case Qblox.ResultListeners.TestRunSettings), including namespace, but we would like it to be a bit more user friendly. I tried setting the macroname and group name in the Display attribute of the metadata parameter, but this doesn’t affect it.
using System;
using OpenTap;
namespace Qblox.ResultListeners
{
[Display("Test Run Settings", Description: "A collection of parameters attached to each test run.")]
public class TestRunSettings : ComponentSettings<TestRunSettings>
{
[MetaData(true)]
[Display("Operator Name", Description: "Name of the operator executing the test.", Order: 1.1)]
public String OperatorName { get; set; }
public TestRunSettings()
{
OperatorName = "";
}
}
}