1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-22 00:47:24 +08:00

change TestCase to OsuTestCase

This commit is contained in:
jorolf 2018-03-04 14:03:53 +01:00
parent ec013dbee8
commit 0a571278c9

View File

@ -4,13 +4,12 @@
using System;
using System.Collections.Generic;
using osu.Framework.Graphics;
using osu.Framework.Testing;
using osu.Game.Overlays.Volume;
using OpenTK.Graphics;
namespace osu.Game.Tests.Visual
{
public class TestCaseVolumePieces : TestCase
public class TestCaseVolumePieces : OsuTestCase
{
public override IReadOnlyList<Type> RequiredTypes => new[] { typeof(VolumeMeter), typeof(MuteButton) };
@ -18,11 +17,11 @@ namespace osu.Game.Tests.Visual
{
VolumeMeter meter;
MuteButton mute;
LoadComponentAsync(meter = new VolumeMeter("MASTER", 125, Color4.Blue), Add);
LoadComponentAsync(mute = new MuteButton
Add(meter = new VolumeMeter("MASTER", 125, Color4.Blue));
Add(mute = new MuteButton
{
Margin = new MarginPadding { Top = 200 }
}, Add);
});
AddSliderStep("master volume", 0, 10, 0, i => meter.Bindable.Value = i * 0.1);
AddToggleStep("mute", b => mute.Current.Value = b);