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 TestSceneDerivedTestWithDerivedSource : TestSceneTestWithSource
9 {
10 [TestCaseSource(nameof(SourceField))]
11 public void TestDerivedSourceField(int a, int b)
12 {
13 }
14
15 [TestCaseSource(nameof(SourceProperty))]
16 public void TestDerivedSourceProperty(int a, int b)
17 {
18 }
19
20 [TestCaseSource(nameof(SourceMethod))]
21 public void TestDerivedSourceMethod(int a, int b)
22 {
23 }
24 }
25}