File tree Expand file tree Collapse file tree
StyleCop.Analyzers/StyleCop.Analyzers.Test/DocumentationRules Expand file tree Collapse file tree Original file line number Diff line number Diff 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 )
You can’t perform that action at this time.
0 commit comments