mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 12:57:25 +08:00
44 lines
1.5 KiB
C#
44 lines
1.5 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using NUnit.Framework;
|
|
using osu.Framework.Graphics;
|
|
using osu.Game.Screens.Edit.Screens.Compose.RadioButtons;
|
|
|
|
namespace osu.Game.Tests.Visual
|
|
{
|
|
[TestFixture]
|
|
public class TestCaseEditorComposeRadioButtons : OsuTestCase
|
|
{
|
|
public override IReadOnlyList<Type> RequiredTypes => new[] { typeof(DrawableRadioButton) };
|
|
|
|
public TestCaseEditorComposeRadioButtons()
|
|
{
|
|
RadioButtonCollection collection;
|
|
Add(collection = new RadioButtonCollection
|
|
{
|
|
Anchor = Anchor.Centre,
|
|
Origin = Anchor.Centre,
|
|
Width = 150,
|
|
Items = new[]
|
|
{
|
|
new RadioButton("Item 1", () => { }),
|
|
new RadioButton("Item 2", () => { }),
|
|
new RadioButton("Item 3", () => { }),
|
|
new RadioButton("Item 4", () => { }),
|
|
new RadioButton("Item 5", () => { })
|
|
}
|
|
});
|
|
|
|
for (int i = 0; i < collection.Items.Count; i++)
|
|
{
|
|
int l = i;
|
|
AddStep($"Select item {l + 1}", () => collection.Items[l].Select());
|
|
AddStep($"Deselect item {l + 1}", () => collection.Items[l].Deselect());
|
|
}
|
|
}
|
|
}
|
|
}
|