A game framework written with osu! in mind.
1// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2// See the LICENCE file in the repository root for full licence text.
3
4using System;
5using JetBrains.Annotations;
6
7namespace osu.Framework.Testing
8{
9 /// <summary>
10 /// Denotes a method which adds <see cref="TestScene"/> steps.
11 /// Invoked via <see cref="TestScene.RunSetUpSteps"/> (which is called from nUnit's [SetUp] or <see cref="TestBrowser.LoadTest"/>).
12 /// </summary>
13 [AttributeUsage(AttributeTargets.Method)]
14 [MeansImplicitUse]
15 public class SetUpStepsAttribute : Attribute
16 {
17 }
18}