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.
This commit is contained in:
Nirmal Guru 2021-03-14 09:50:03 +05:30
Родитель 972480972a
Коммит 445b6cda1e
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 230F32B3E627D620
4 изменённых файлов: 16 добавлений и 14 удалений

Просмотреть файл

@ -2,15 +2,14 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Microsoft.Windows.Apps.Test.Foundation;
using Microsoft.Windows.Apps.Test.Foundation.Controls;
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
using System.Linq;
using System.Threading.Tasks;
using System;
using System.Collections.Generic;
using System.Dynamic;
using System;
using System.Linq;
using System.Threading.Tasks;
using Microsoft.Windows.Apps.Test.Foundation;
using Microsoft.Windows.Apps.Test.Foundation.Controls;
#if USING_TAEF
using WEX.Logging.Interop;
@ -20,9 +19,11 @@ using WEX.TestExecution.Markup;
using Microsoft.VisualStudio.TestTools.UnitTesting;
#endif
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
namespace UITests.Tests
{
[TestClass]
public class GridSplitterTest : UITestBase
{

Просмотреть файл

@ -3,8 +3,6 @@
// See the LICENSE file in the project root for more information.
using Microsoft.Windows.Apps.Test.Foundation.Controls;
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
#if USING_TAEF
using WEX.Logging.Interop;
@ -14,9 +12,11 @@ using WEX.TestExecution.Markup;
using Microsoft.VisualStudio.TestTools.UnitTesting;
#endif
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
namespace UITests.Tests
{
[TestClass]
public class RangeSelectorTest : UITestBase
{

Просмотреть файл

@ -2,11 +2,11 @@
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using Microsoft.Windows.Apps.Test.Automation;
using Microsoft.Windows.Apps.Test.Foundation;
using Microsoft.Windows.Apps.Test.Foundation.Controls;
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
using Microsoft.Windows.Apps.Test.Automation;
#if USING_TAEF
using WEX.Logging.Interop;

Просмотреть файл

@ -6,8 +6,6 @@ using System;
using System.IO;
using System.Linq;
using System.Reflection;
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
using System.Threading.Tasks;
#if USING_TAEF
@ -18,6 +16,9 @@ using WEX.TestExecution.Markup;
using Microsoft.VisualStudio.TestTools.UnitTesting;
#endif
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Common;
using Windows.UI.Xaml.Tests.MUXControls.InteractionTests.Infra;
namespace UITests.Tests
{
public abstract class UITestBase