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 TestSceneTestWithExternalSource : FrameworkTestScene
9 {
10 [TestCaseSource(typeof(TestSceneTestWithSource), nameof(TestSceneTestWithSource.ExposedSourceField))]
11 public void TestExposedSourceField(int a, int b)
12 {
13 }
14
15 [TestCaseSource(typeof(TestSceneTestWithSource), nameof(TestSceneTestWithSource.ExposedSourceProperty))]
16 public void TestExposedSourceProperty(int a, int b)
17 {
18 }
19
20 [TestCaseSource(typeof(TestSceneTestWithSource), nameof(TestSceneTestWithSource.ExposedSourceMethod))]
21 public void TestExposedSourceMethod(int a, int b)
22 {
23 }
24 }
25}