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 NUnit.Framework;
5
6namespace osu.Framework.Tests.Visual.Testing
7{
8 public class TestSceneIgnore : FrameworkTestScene
9 {
10 [Test]
11 [Ignore("test")]
12 public void IgnoredTest()
13 {
14 AddAssert("Test ignored", () => false);
15 }
16
17 [TestCase(1)]
18 [TestCase(2)]
19 [Ignore("test")]
20 public void IgnoredParameterizedTest(int test)
21 {
22 AddAssert("Test ignored", () => false);
23 }
24 }
25}