Skip to content

Commit 87de9d4

Browse files
committed
修改命名空间
1 parent 7a0742a commit 87de9d4

File tree

151 files changed

+340
-449
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

151 files changed

+340
-449
lines changed

src/dotnetCampus.UITest.WPFTestHelper/ApplicationControl/ApplicationSettings.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using System;
66

7-
namespace Microsoft.Test.ApplicationControl
7+
namespace dotnetCampus.UITest.WPFTestHelper.ApplicationControl
88
{
99
/// <summary>
1010
/// Provides configuration information for an <see cref="AutomatedApplication"/>.

src/dotnetCampus.UITest.WPFTestHelper/ApplicationControl/AutomatedApplication.cs

Lines changed: 3 additions & 3 deletions
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 System;
6-
using System.Threading;
5+
using System;
76
using System.Collections.Generic;
7+
using System.Threading;
88

9-
namespace Microsoft.Test.ApplicationControl
9+
namespace dotnetCampus.UITest.WPFTestHelper.ApplicationControl
1010
{
1111
/// <summary>
1212
/// Loads and starts a test application either in the current process or in a new,

src/dotnetCampus.UITest.WPFTestHelper/ApplicationControl/AutomatedApplicationEventArgs.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Licensed to the .NET Foundation under one or more agreements.
1+
// Licensed to the .NET Foundation under one or more agreements.
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 System;
5+
using System;
66

7-
namespace Microsoft.Test.ApplicationControl
7+
namespace dotnetCampus.UITest.WPFTestHelper.ApplicationControl
88
{
99
/// <summary>
1010
/// Represents the event args passed to AutomatedApplication events.

src/dotnetCampus.UITest.WPFTestHelper/ApplicationControl/AutomatedApplicationEventType.cs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,10 @@
1-
// Licensed to the .NET Foundation under one or more agreements.
1+
// Licensed to the .NET Foundation under one or more agreements.
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 System;
6-
using System.Collections.Generic;
7-
using System.Linq;
8-
using System.Text;
5+
using System;
96

10-
namespace Microsoft.Test.ApplicationControl
7+
namespace dotnetCampus.UITest.WPFTestHelper.ApplicationControl
118
{
129
/// <summary>
1310
/// Specifies the supported AutomatedApplication events.

src/dotnetCampus.UITest.WPFTestHelper/ApplicationControl/AutomatedApplicationFocusChangedEventArgs.cs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
1-
// Licensed to the .NET Foundation under one or more agreements.
1+
// Licensed to the .NET Foundation under one or more agreements.
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 System;
6-
using System.Collections.Generic;
7-
using System.Linq;
8-
using System.Text;
9-
10-
namespace Microsoft.Test.ApplicationControl
5+
namespace dotnetCampus.UITest.WPFTestHelper.ApplicationControl
116
{
127
/// <summary>
138
/// Represents the event args passed to AutomatedApplication focus changed events.

src/dotnetCampus.UITest.WPFTestHelper/ApplicationControl/IAutomatedApplicationImpl.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Licensed to the .NET Foundation under one or more agreements.
1+
// Licensed to the .NET Foundation under one or more agreements.
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 System;
5+
using System;
66

7-
namespace Microsoft.Test.ApplicationControl
7+
namespace dotnetCampus.UITest.WPFTestHelper.ApplicationControl
88
{
99
/// <summary>
1010
/// Defines the contract for an AutomatedApplication.

src/dotnetCampus.UITest.WPFTestHelper/ApplicationControl/IAutomatedApplicationImplFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
using System;
66

7-
namespace Microsoft.Test.ApplicationControl
7+
namespace dotnetCampus.UITest.WPFTestHelper.ApplicationControl
88
{
99
/// <summary>
1010
/// Defines the contract for creating an IAutomatedApplicationImpl instance.

src/dotnetCampus.UITest.WPFTestHelper/ApplicationControl/IOutOfProcessAutomatedApplicationImpl.cs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
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 System;
65
using System.Diagnostics;
76

8-
namespace Microsoft.Test.ApplicationControl
7+
namespace dotnetCampus.UITest.WPFTestHelper.ApplicationControl
98
{
109
/// <summary>
1110
/// Defines the contract for an out of process AutomatedApplication.

src/dotnetCampus.UITest.WPFTestHelper/ApplicationControl/InProcessApplication.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
1-
// Licensed to the .NET Foundation under one or more agreements.
1+
// Licensed to the .NET Foundation under one or more agreements.
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 System;
5+
using System;
66
using System.Globalization;
7-
using System.IO;
8-
using System.Reflection;
97
using System.Threading;
108

11-
namespace Microsoft.Test.ApplicationControl
9+
namespace dotnetCampus.UITest.WPFTestHelper.ApplicationControl
1210
{
1311
/// <summary>
1412
/// Represents a test application running in the current process.

src/dotnetCampus.UITest.WPFTestHelper/ApplicationControl/InProcessApplicationSettings.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
// Licensed to the .NET Foundation under one or more agreements.
1+
// Licensed to the .NET Foundation under one or more agreements.
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 System;
5+
using System;
66

7-
namespace Microsoft.Test.ApplicationControl
7+
namespace dotnetCampus.UITest.WPFTestHelper.ApplicationControl
88
{
99
/// <summary>
1010
/// Configures an in-process automated application.

0 commit comments

Comments
 (0)