File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed
UnitTests/UnitTests.NetCore/Mvvm Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change 88using Microsoft . Toolkit . Mvvm . Input ;
99using Microsoft . VisualStudio . TestTools . UnitTesting ;
1010
11+ #pragma warning disable SA1124
12+
1113namespace UnitTests . Mvvm
1214{
1315 [ SuppressMessage ( "StyleCop.CSharp.DocumentationRules" , "SA1601" , Justification = "Type only used for testing" ) ]
@@ -78,6 +80,8 @@ private async Task DelayAndIncrementCounterAsync()
7880 Counter += 1 ;
7981 }
8082
83+ #region Test region
84+
8185 /// <summary>
8286 /// This is multi line with also other stuff below
8387 /// </summary>
@@ -100,6 +104,8 @@ private async Task DelayAndIncrementCounterWithValueAsync(int count)
100104 Counter += count ;
101105 }
102106
107+ #endregion
108+
103109 [ ICommand ]
104110 private async Task DelayAndIncrementCounterWithValueAndTokenAsync ( int count , CancellationToken token )
105111 {
You can’t perform that action at this time.
0 commit comments