1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-23 02:31:18 +08:00

add unordered list test

This commit is contained in:
Gagah Pangeran Rosfatiputra
2021-04-29 13:48:00 +07:00
Unverified
parent 4e691ce4b0
commit 171e954e89
@@ -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";
});
}
}
}