1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 20:22:55 +08:00

add ordered list test

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-04-30 10:43:19 +07:00
parent 781064ba96
commit 1582b0da88
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -128,5 +128,25 @@ Line below";
- Third item level 1";
});
}
[Test]
public void TestOrderedList()
{
AddStep("Add Ordered List", () =>
{
markdownContainer.Text = @"1. First item level 1
2. Second item level 1
1. First item level 2
1. First item level 3
2. Second item level 3
3. Third item level 3
1. First item level 4
2. Second item level 4
3. Third item level 4
2. Second item level 2
3. Third item level 2
3. Third item level 1";
});
}
}
}