1
0
mirror of https://github.com/ppy/osu.git synced 2025-03-24 19:17:20 +08:00

add unordered list test

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-04-29 13:48:00 +07:00
parent 4e691ce4b0
commit 171e954e89
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -108,5 +108,25 @@ Line below";
| Left | Center | Right |";
});
}
[Test]
public void TestUnorderedList()
{
AddStep("Add Unordered List", () =>
{
markdownContainer.Text = @"- First item level 1
- Second item level 1
- First item level 2
- First item level 3
- Second item level 3
- Third item level 3
- First item level 4
- Second item level 4
- Third item level 4
- Second item level 2
- Third item level 2
- Third item level 1";
});
}
}
}