// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using System; using JetBrains.Annotations; namespace osu.Framework.Testing { /// /// Denotes a method which adds steps. /// Invoked via (which is called from nUnit's [SetUp] or ). /// [AttributeUsage(AttributeTargets.Method)] [MeansImplicitUse] public class SetUpStepsAttribute : Attribute { } }