namespace SixLabors.ImageSharp.Tests { using System; /// /// The output produced by this test class should be grouped into the specified subfolder. /// public class GroupOutputAttribute : Attribute { public GroupOutputAttribute(string subfolder) { this.Subfolder = subfolder; } public string Subfolder { get; } } }