Skip to content

Commit 7b08511

Browse files
committed
Fix SA1208, SA1210, SA1505 warnings
Code SA1208: Using directive should appear before other directives. Code SA1210: Using directives should be ordered alphabetically by the namespaces. Code SA1505: An opening brace should not be followed by a blank line.
1 parent de9d4e8 commit 7b08511

File tree

4 files changed

+16
-14
lines changed

4 files changed

+16
-14
lines changed

UITests/UITests.Tests.Shared/Controls/GridSplitterTest.cs

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5-
using Microsoft.Windows.Apps.Test.Foundation;
6-
using Microsoft.Windows.Apps.Test.Foundation.Controls;
7-
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
8-
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
9-
using System.Linq;
10-
using System.Threading.Tasks;
5+
using System;
116
using System.Collections.Generic;
127
using System.Dynamic;
13-
using System;
8+
using System.Linq;
9+
using System.Threading.Tasks;
10+
11+
using Microsoft.Windows.Apps.Test.Foundation;
12+
using Microsoft.Windows.Apps.Test.Foundation.Controls;
1413

1514
#if USING_TAEF
1615
using WEX.Logging.Interop;
@@ -20,9 +19,11 @@
2019
using Microsoft.VisualStudio.TestTools.UnitTesting;
2120
#endif
2221

22+
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
23+
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
24+
2325
namespace UITests.Tests
2426
{
25-
2627
[TestClass]
2728
public class GridSplitterTest : UITestBase
2829
{

UITests/UITests.Tests.Shared/Controls/RangeSelectorTest.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
// See the LICENSE file in the project root for more information.
44

55
using Microsoft.Windows.Apps.Test.Foundation.Controls;
6-
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
7-
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
86

97
#if USING_TAEF
108
using WEX.Logging.Interop;
@@ -14,9 +12,11 @@
1412
using Microsoft.VisualStudio.TestTools.UnitTesting;
1513
#endif
1614

15+
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
16+
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
17+
1718
namespace UITests.Tests
1819
{
19-
2020
[TestClass]
2121
public class RangeSelectorTest : UITestBase
2222
{

UITests/UITests.Tests.Shared/Controls/RichSuggestBoxTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
// The .NET Foundation licenses this file to you under the MIT license.
33
// See the LICENSE file in the project root for more information.
44

5+
using Microsoft.Windows.Apps.Test.Automation;
56
using Microsoft.Windows.Apps.Test.Foundation;
67
using Microsoft.Windows.Apps.Test.Foundation.Controls;
78
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
89
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
9-
using Microsoft.Windows.Apps.Test.Automation;
1010

1111
#if USING_TAEF
1212
using WEX.Logging.Interop;

UITests/UITests.Tests.Shared/UITestBase.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,6 @@
66
using System.IO;
77
using System.Linq;
88
using System.Reflection;
9-
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
10-
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
119
using System.Threading.Tasks;
1210

1311
#if USING_TAEF
@@ -18,6 +16,9 @@
1816
using Microsoft.VisualStudio.TestTools.UnitTesting;
1917
#endif
2018

19+
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
20+
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
21+
2122
namespace UITests.Tests
2223
{
2324
public abstract class UITestBase

0 commit comments

Comments
 (0)