tests: wrap multiple asserts in Assert.Multiple

This commit is contained in:
Oliver Booth 2023-08-27 03:48:22 +01:00
parent fbd3e951c4
commit 45ffd08dda
Signed by: oliverbooth
GPG Key ID: B89D139977693FED
2 changed files with 17 additions and 11 deletions

View File

@ -8,12 +8,15 @@ internal class CharTests
{
[Test]
public void IsEmoji_ShouldReturnTrue_GivenBasicEmoji()
{
Assert.Multiple(() =>
{
Assert.That('✂'.IsEmoji());
Assert.That('✅'.IsEmoji());
Assert.That('❎'.IsEmoji());
Assert.That(''.IsEmoji());
Assert.That(''.IsEmoji());
});
}
[Test]

View File

@ -69,6 +69,8 @@ internal class MarkdownTests
[Test]
public void MDHeading_ShouldReturnHeadingText_GivenText()
{
Assert.Multiple(() =>
{
Assert.That("Hello, world!".MDHeading(1), Is.EqualTo("# Hello, world!"));
Assert.That("Hello, world!".MDHeading(2), Is.EqualTo("## Hello, world!"));
@ -76,6 +78,7 @@ internal class MarkdownTests
Assert.That("Hello, world!".MDHeading(4), Is.EqualTo("#### Hello, world!"));
Assert.That("Hello, world!".MDHeading(5), Is.EqualTo("##### Hello, world!"));
Assert.That("Hello, world!".MDHeading(6), Is.EqualTo("###### Hello, world!"));
});
}
[Test]