Skip to content

Commit 4780d8b

Browse files
committed
Updated unit test files
1 parent 7c581ee commit 4780d8b

File tree

7 files changed

+11
-13
lines changed

7 files changed

+11
-13
lines changed

UnitTests/UnitTests.HighPerformance.Shared/Extensions/Test_ArrayExtensions.2D.cs

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

55
using System;
66
using System.Runtime.CompilerServices;
7+
using Microsoft.Toolkit.HighPerformance;
78
using Microsoft.Toolkit.HighPerformance.Enumerables;
89
using Microsoft.Toolkit.HighPerformance.Extensions;
9-
using Microsoft.Toolkit.HighPerformance.Memory;
1010
using Microsoft.VisualStudio.TestTools.UnitTesting;
1111

1212
namespace UnitTests.HighPerformance.Extensions

UnitTests/UnitTests.HighPerformance.Shared/Helpers/Test_ParallelHelper.ForEach.In2D.cs

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,9 @@
44

55
using System;
66
using System.Diagnostics.Contracts;
7-
using System.Runtime.CompilerServices;
8-
using System.Threading;
7+
using Microsoft.Toolkit.HighPerformance;
98
using Microsoft.Toolkit.HighPerformance.Extensions;
109
using Microsoft.Toolkit.HighPerformance.Helpers;
11-
using Microsoft.Toolkit.HighPerformance.Memory;
1210
using Microsoft.VisualStudio.TestTools.UnitTesting;
1311

1412
namespace UnitTests.HighPerformance.Helpers

UnitTests/UnitTests.HighPerformance.Shared/Helpers/Test_ParallelHelper.ForEach.Ref2D.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +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 Microsoft.Toolkit.HighPerformance;
56
using Microsoft.Toolkit.HighPerformance.Extensions;
67
using Microsoft.Toolkit.HighPerformance.Helpers;
7-
using Microsoft.Toolkit.HighPerformance.Memory;
88
using Microsoft.VisualStudio.TestTools.UnitTesting;
99

1010
namespace UnitTests.HighPerformance.Helpers

UnitTests/UnitTests.HighPerformance.Shared/Memory/Test_Memory2D{T}.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
using System.Runtime.CompilerServices;
99
using Microsoft.Toolkit.HighPerformance.Extensions;
1010
#endif
11-
using Microsoft.Toolkit.HighPerformance.Memory;
11+
using Microsoft.Toolkit.HighPerformance;
1212
using Microsoft.VisualStudio.TestTools.UnitTesting;
1313

14-
namespace UnitTests.HighPerformance.Memory
14+
namespace UnitTests.HighPerformance
1515
{
1616
[TestClass]
1717
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1649", Justification = "Test class for generic type")]

UnitTests/UnitTests.HighPerformance.Shared/Memory/Test_ReadOnlyMemory2D{T}.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88
using System.Runtime.CompilerServices;
99
using Microsoft.Toolkit.HighPerformance.Extensions;
1010
#endif
11-
using Microsoft.Toolkit.HighPerformance.Memory;
11+
using Microsoft.Toolkit.HighPerformance;
1212
using Microsoft.VisualStudio.TestTools.UnitTesting;
1313

14-
namespace UnitTests.HighPerformance.Memory
14+
namespace UnitTests.HighPerformance
1515
{
1616
/* ====================================================================
1717
* NOTE

UnitTests/UnitTests.HighPerformance.Shared/Memory/Test_ReadOnlySpan2D{T}.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
using System;
66
using System.Diagnostics.CodeAnalysis;
77
using System.Runtime.CompilerServices;
8+
using Microsoft.Toolkit.HighPerformance;
89
using Microsoft.Toolkit.HighPerformance.Enumerables;
910
using Microsoft.Toolkit.HighPerformance.Extensions;
10-
using Microsoft.Toolkit.HighPerformance.Memory;
1111
using Microsoft.VisualStudio.TestTools.UnitTesting;
1212

13-
namespace UnitTests.HighPerformance.Memory
13+
namespace UnitTests.HighPerformance
1414
{
1515
/* ====================================================================
1616
* NOTE

UnitTests/UnitTests.HighPerformance.Shared/Memory/Test_Span2D{T}.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
using System.Diagnostics.CodeAnalysis;
77
using System.Linq;
88
using System.Runtime.CompilerServices;
9+
using Microsoft.Toolkit.HighPerformance;
910
using Microsoft.Toolkit.HighPerformance.Enumerables;
10-
using Microsoft.Toolkit.HighPerformance.Memory;
1111
using Microsoft.VisualStudio.TestTools.UnitTesting;
1212

13-
namespace UnitTests.HighPerformance.Memory
13+
namespace UnitTests.HighPerformance
1414
{
1515
[TestClass]
1616
[SuppressMessage("StyleCop.CSharp.DocumentationRules", "SA1649", Justification = "Test class for generic type")]

0 commit comments

Comments
 (0)