Skip to content

Commit

Permalink
Add basic test case
Browse files Browse the repository at this point in the history
  • Loading branch information
frenzibyte committed Dec 2, 2023
1 parent a385e2a commit c6c97ee
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions osu.Framework.Tests/Visual/UserInterface/TestSceneDropdown.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,16 @@ public partial class TestSceneDropdown : ManualInputManagerTestScene
{
private const int items_to_add = 10;

[Test]
public void TestBasic()
{
AddStep("setup dropdowns", () =>
{
TestDropdown[] dropdowns = createDropdowns(2);
dropdowns[1].AlwaysShowSearchBar = true;
});
}

[Test]
public void TestSelectByUserInteraction()
{
Expand Down

0 comments on commit c6c97ee

Please sign in to comment.