Skip to content

Commit 9398e8b

Browse files
committed
Make test types internal
1 parent 4d7c24e commit 9398e8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

LibGit2Sharp.Tests/TestHelpers/ConditionalFactAttribute.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
namespace LibGit2Sharp.Tests
88
{
9-
public class ConditionalFactAttribute : FactAttribute
9+
internal class ConditionalFactAttribute : FactAttribute
1010
{
1111
public ConditionalFactAttribute(params Type[] skipConditions)
1212
{
@@ -22,13 +22,13 @@ public ConditionalFactAttribute(params Type[] skipConditions)
2222
}
2323
}
2424

25-
public abstract class ExecutionCondition
25+
internal abstract class ExecutionCondition
2626
{
2727
public abstract bool ShouldSkip { get; }
2828
public abstract string SkipReason { get; }
2929
}
3030

31-
public class NetFramework : ExecutionCondition
31+
internal class NetFramework : ExecutionCondition
3232
{
3333
public override bool ShouldSkip => !Platform.IsRunningOnNetFramework();
3434
public override string SkipReason => ".NET Framework only test";

0 commit comments

Comments
 (0)