A game framework written with osu! in mind.
at master 601 B view raw
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 NUnit.Framework; 5using osu.Framework.Testing; 6 7namespace osu.Framework.Tests.Visual.Testing 8{ 9 public class TestSceneDerivedTestWithDerivedMethodsWithAttributes : TestSceneTest 10 { 11 [SetUp] 12 public override void SetUp() => base.SetUp(); 13 14 [SetUpSteps] 15 public override void SetUpSteps() => base.SetUpSteps(); 16 17 [TearDownSteps] 18 public override void TearDownSteps() => base.TearDownSteps(); 19 } 20}