A game framework written with osu! in mind.
at master 484 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.Tests.Bindables; 6 7namespace osu.Framework.Tests.Visual.Testing 8{ 9 public class TestSceneTestWithValues : FrameworkTestScene 10 { 11 [Test] 12 public void TestValues([Values] BindableEnumTest.TestEnum vals1, [Values] BindableEnumTest.TestEnum vals2) 13 { 14 } 15 } 16}