File tree Expand file tree Collapse file tree 2 files changed +25
-0
lines changed
Tvl.VisualStudio.MouseFastScroll.IntegrationTests/Threading Expand file tree Collapse file tree 2 files changed +25
-0
lines changed Original file line number Diff line number Diff line change
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.
3
+
4
+ namespace Tvl . VisualStudio . MouseFastScroll . IntegrationTests . Threading
5
+ {
6
+ using System ;
7
+
8
+ internal static class ExceptionUtilities
9
+ {
10
+ internal static Exception Unreachable
11
+ => new InvalidOperationException ( "This program location is thought to be unreachable." ) ;
12
+ }
13
+ }
Original file line number Diff line number Diff line change
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.
3
+
4
+ namespace Tvl . VisualStudio . MouseFastScroll . IntegrationTests . Threading
5
+ {
6
+ public abstract class ExecutionCondition
7
+ {
8
+ public abstract bool ShouldSkip { get ; }
9
+
10
+ public abstract string SkipReason { get ; }
11
+ }
12
+ }
You can’t perform that action at this time.
0 commit comments