Skip to content

Commit bfead72

Browse files
committed
Update headers, namespaces, and using directives
1 parent 05628c2 commit bfead72

15 files changed

+125
-113
lines changed

Tvl.VisualStudio.MouseFastScroll.IntegrationTests/Threading/ConditionalWpfFactAttribute.cs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE.txt in the project root for license information.
23

3-
using System;
4-
5-
namespace Roslyn.Test.Utilities
4+
namespace Tvl.VisualStudio.MouseFastScroll.IntegrationTests.Threading
65
{
6+
using System;
7+
78
public class ConditionalWpfFactAttribute : WpfFactAttribute
89
{
910
public ConditionalWpfFactAttribute(Type skipCondition)

Tvl.VisualStudio.MouseFastScroll.IntegrationTests/Threading/ConditionalWpfTheoryAttribute.cs

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
1-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE.txt in the project root for license information.
23

3-
using System;
4-
5-
namespace Roslyn.Test.Utilities
4+
namespace Tvl.VisualStudio.MouseFastScroll.IntegrationTests.Threading
65
{
6+
using System;
7+
78
public class ConditionalWpfTheoryAttribute : WpfTheoryAttribute
89
{
910
public ConditionalWpfTheoryAttribute(Type skipCondition)

Tvl.VisualStudio.MouseFastScroll.IntegrationTests/Threading/SemaphoreExtensions.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE.txt in the project root for license information.
23

3-
using System;
4-
using System.Threading;
5-
using System.Threading.Tasks;
6-
7-
namespace Roslyn.Utilities
4+
namespace Tvl.VisualStudio.MouseFastScroll.IntegrationTests.Threading
85
{
6+
using System;
7+
using System.Threading;
8+
using System.Threading.Tasks;
9+
910
internal static class SemaphoreExtensions
1011
{
1112
public static SemaphoreDisposer DisposableWait(this Semaphore semaphore, CancellationToken cancellationToken)

Tvl.VisualStudio.MouseFastScroll.IntegrationTests/Threading/StaTaskScheduler.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE.txt in the project root for license information.
23

3-
using System;
4-
using System.Threading;
5-
using System.Windows.Threading;
6-
7-
namespace Roslyn.Test.Utilities
4+
namespace Tvl.VisualStudio.MouseFastScroll.IntegrationTests.Threading
85
{
6+
using System;
7+
using System.Threading;
8+
using System.Windows.Threading;
9+
910
public sealed class StaTaskScheduler : IDisposable
1011
{
1112
/// <summary>Gets a <see cref="StaTaskScheduler"/> for the current <see cref="AppDomain"/>.</summary>

Tvl.VisualStudio.MouseFastScroll.IntegrationTests/Threading/SynchronizationContextTaskScheduler.cs

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE.txt in the project root for license information.
23

3-
using System;
4-
using System.Collections.Generic;
5-
using System.Threading;
6-
using System.Threading.Tasks;
7-
8-
namespace Microsoft.CodeAnalysis.Editor.Shared.Utilities
4+
namespace Tvl.VisualStudio.MouseFastScroll.IntegrationTests.Threading
95
{
6+
using System;
7+
using System.Collections.Generic;
8+
using System.Threading;
9+
using System.Threading.Tasks;
10+
1011
// Based on CoreCLR's implementation of the TaskScheduler they return from TaskScheduler.FromCurrentSynchronizationContext
1112
internal class SynchronizationContextTaskScheduler : TaskScheduler
1213
{

Tvl.VisualStudio.MouseFastScroll.IntegrationTests/Threading/TaskJoinExtensions.cs

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,13 @@
1-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE.txt in the project root for license information.
23

3-
using System.Threading;
4-
using System.Threading.Tasks;
5-
using System.Windows.Threading;
6-
using Xunit;
7-
8-
namespace Roslyn.Test.Utilities
4+
namespace Tvl.VisualStudio.MouseFastScroll.IntegrationTests.Threading
95
{
6+
using System.Threading;
7+
using System.Threading.Tasks;
8+
using System.Windows.Threading;
9+
using Xunit;
10+
1011
public static class TaskJoinExtensions
1112
{
1213
/// <summary>

Tvl.VisualStudio.MouseFastScroll.IntegrationTests/Threading/WpfFactAttribute.cs

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
1-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE.txt in the project root for license information.
23

3-
using System;
4-
using Xunit;
5-
using Xunit.Sdk;
6-
7-
namespace Roslyn.Test.Utilities
4+
namespace Tvl.VisualStudio.MouseFastScroll.IntegrationTests.Threading
85
{
6+
using System;
7+
using Xunit;
8+
using Xunit.Sdk;
9+
910
[AttributeUsage(AttributeTargets.Method, AllowMultiple = false)]
10-
[XunitTestCaseDiscoverer("Roslyn.Test.Utilities.WpfFactDiscoverer", "Roslyn.Services.Test.Utilities")]
11+
[XunitTestCaseDiscoverer("Tvl.VisualStudio.MouseFastScroll.IntegrationTests.Threading.WpfFactDiscoverer", "Tvl.VisualStudio.MouseFastScroll.IntegrationTests")]
1112
public class WpfFactAttribute : FactAttribute
1213
{
1314
}

Tvl.VisualStudio.MouseFastScroll.IntegrationTests/Threading/WpfFactDiscoverer.cs

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,12 @@
1-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE.txt in the project root for license information.
23

3-
using System.Collections.Generic;
4-
using Xunit.Abstractions;
5-
using Xunit.Sdk;
6-
7-
namespace Roslyn.Test.Utilities
4+
namespace Tvl.VisualStudio.MouseFastScroll.IntegrationTests.Threading
85
{
6+
using System.Collections.Generic;
7+
using Xunit.Abstractions;
8+
using Xunit.Sdk;
9+
910
public class WpfFactDiscoverer : FactDiscoverer
1011
{
1112
private readonly IMessageSink _diagnosticMessageSink;

Tvl.VisualStudio.MouseFastScroll.IntegrationTests/Threading/WpfTestCase.cs

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE.txt in the project root for license information.
23

3-
using System;
4-
using System.ComponentModel;
5-
using System.Threading;
6-
using System.Threading.Tasks;
7-
using Xunit.Abstractions;
8-
using Xunit.Sdk;
9-
10-
namespace Roslyn.Test.Utilities
4+
namespace Tvl.VisualStudio.MouseFastScroll.IntegrationTests.Threading
115
{
6+
using System;
7+
using System.ComponentModel;
8+
using System.Threading;
9+
using System.Threading.Tasks;
10+
using Xunit.Abstractions;
11+
using Xunit.Sdk;
12+
1213
public sealed class WpfTestCase : XunitTestCase
1314
{
1415
public WpfTestSharedData SharedData { get; private set; }

Tvl.VisualStudio.MouseFastScroll.IntegrationTests/Threading/WpfTestCaseRunner.cs

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
1-
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
1+
// Copyright (c) Tunnel Vision Laboratories, LLC. All Rights Reserved.
2+
// Licensed under the Apache License, Version 2.0. See LICENSE.txt in the project root for license information.
23

3-
using System;
4-
using System.Collections.Generic;
5-
using System.Reflection;
6-
using System.Threading;
7-
using Xunit.Abstractions;
8-
using Xunit.Sdk;
9-
10-
namespace Roslyn.Test.Utilities
4+
namespace Tvl.VisualStudio.MouseFastScroll.IntegrationTests.Threading
115
{
6+
using System;
7+
using System.Collections.Generic;
8+
using System.Reflection;
9+
using System.Threading;
10+
using Xunit.Abstractions;
11+
using Xunit.Sdk;
12+
1213
public sealed class WpfTestCaseRunner : XunitTestCaseRunner
1314
{
1415
public WpfTestSharedData SharedData { get; }

0 commit comments

Comments
 (0)