Skip to content

Commit 4e5e73f

Browse files
committed
Expand IndividualMarkdownBenchmarks with additional table cases for 50 and 100 rows to improve benchmark coverage.
1 parent e77170b commit 4e5e73f

1 file changed

Lines changed: 10 additions & 0 deletions

File tree

benchmarks/Benchmarks.InfiniBlazor.Markdown/IndividualMarkdownBenchmarks.cs

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -245,6 +245,16 @@ line 2
245245
| Row 2 | Data 2 |
246246
| Row 3 | Data 3 |
247247
"""),
248+
new("Table_50Rows", $"""
249+
| Header 1 | Header 2 |
250+
| -------- | -------- |
251+
{RepeatLines("| Row 1 | Data 1 |", 50)}
252+
"""),
253+
new("Table_100Rows", $"""
254+
| Header 1 | Header 2 |
255+
| -------- | -------- |
256+
{RepeatLines("| Row 1 | Data 1 |", 100)}
257+
"""),
248258
#endregion
249259

250260
#region Tag

0 commit comments

Comments
 (0)