You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: StyleCop.Analyzers/StyleCop.Analyzers.Test/DocumentationRules/SA1624UnitTests.cs
+19-8Lines changed: 19 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -20,26 +20,37 @@ public class SA1624UnitTests : CodeFixVerifier
20
20
/// <summary>
21
21
/// Verifies that documentation that starts with the proper text for multiple accessors will produce a diagnostic when one of the accessors has reduced visibility.
22
22
/// </summary>
23
+
/// <param name="accessibility">The accessibility of the property.</param>
23
24
/// <param name="type">The type to use for the property.</param>
24
25
/// <param name="accessors">The accessors for the property.</param>
25
26
/// <param name="summaryPrefix">The prefix to use in the summary text.</param>
26
27
/// <param name="expectedArgument1">The first expected argument for the diagnostic.</param>
27
28
/// <param name="expectedArgument2">The second expected argument for the diagnostic.</param>
28
29
/// <returns>A <see cref="Task"/> representing the asynchronous unit test.</returns>
29
30
[Theory]
30
-
[InlineData("int","get; private set;","Gets or sets","get","Gets")]
31
-
[InlineData("int","private get; set;","Gets or sets","set","Sets")]
32
-
[InlineData("bool","get; private set;","Gets or sets a value indicating whether","get","Gets a value indicating whether")]
33
-
[InlineData("bool","private get; set;","Gets or sets a value indicating whether","set","Sets a value indicating whether")]
0 commit comments