Skip to content

Commit 877458f

Browse files
committed
Added additional test data
1 parent 7fe5875 commit 877458f

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

StyleCop.Analyzers/StyleCop.Analyzers.Test/DocumentationRules/SA1633UnitTests.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -262,6 +262,10 @@ namespace Foo
262262
/// <param name="prefix">The string to add before the header.</param>
263263
/// <returns>A <see cref="Task"/> representing the asynchronous unit test.</returns>
264264
[Theory]
265+
[InlineData(" ")]
266+
[InlineData("\t\t")]
267+
[InlineData(" \t")]
268+
[InlineData(" \r\n\t\r\n")]
265269
[InlineData("\r\n")]
266270
[InlineData("\r\n\r\n")]
267271
public async Task TestValidXmlFileHeaderWithLeadingBlankLinesAsync(string prefix)
@@ -281,6 +285,10 @@ public async Task TestValidXmlFileHeaderWithLeadingBlankLinesAsync(string prefix
281285
/// <param name="prefix">The string to add before the header.</param>
282286
/// <returns>A <see cref="Task"/> representing the asynchronous unit test.</returns>
283287
[Theory]
288+
[InlineData(" ")]
289+
[InlineData("\t\t")]
290+
[InlineData(" \t")]
291+
[InlineData(" \r\n\t\r\n")]
284292
[InlineData("\r\n")]
285293
[InlineData("\r\n\r\n")]
286294
public async Task TestValidFileHeaderWithLeadingBlankLinesAsync(string prefix)

0 commit comments

Comments
 (0)