Skip to content

Commit d9753b1

Browse files
committed
Implement missing helper types
1 parent 3925db7 commit d9753b1

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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+
}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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+
}

0 commit comments

Comments
 (0)