1
0
mirror of https://github.com/ppy/osu.git synced 2025-01-14 17:52:56 +08:00

add emphases test

This commit is contained in:
Gagah Pangeran Rosfatiputra 2021-05-04 05:43:59 +07:00
parent 3e7df3bf02
commit 356b1e9a2d
No known key found for this signature in database
GPG Key ID: 25F6F17FD29031E2

View File

@ -41,6 +41,20 @@ namespace osu.Game.Tests.Visual.UserInterface
};
});
[Test]
public void TestEmphases()
{
AddStep("Emphases", () =>
{
markdownContainer.Text = @"_italic with underscore_
*italic with asterisk*
__bold with underscore__
**bold with asterisk**
*__italic with asterisk, bold with underscore__*
_**italic with underscore, bold with asterisk**_";
});
}
[Test]
public void TestHeading()
{