namespace OpenTap;
///
/// A test step implements custom name formatting.
///
public interface IFormatName : ITestStep
{
///
/// Returns the formatted name, this is called before it is given to the logic of TestStep.GetFormattedName, so it include macros ("{}") in the output.
///
string GetFormattedName();
}