File tree 1 file changed +3
-3
lines changed
LibGit2Sharp.Tests/TestHelpers
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 6
6
7
7
namespace LibGit2Sharp . Tests
8
8
{
9
- public class ConditionalFactAttribute : FactAttribute
9
+ internal class ConditionalFactAttribute : FactAttribute
10
10
{
11
11
public ConditionalFactAttribute ( params Type [ ] skipConditions )
12
12
{
@@ -22,13 +22,13 @@ public ConditionalFactAttribute(params Type[] skipConditions)
22
22
}
23
23
}
24
24
25
- public abstract class ExecutionCondition
25
+ internal abstract class ExecutionCondition
26
26
{
27
27
public abstract bool ShouldSkip { get ; }
28
28
public abstract string SkipReason { get ; }
29
29
}
30
30
31
- public class NetFramework : ExecutionCondition
31
+ internal class NetFramework : ExecutionCondition
32
32
{
33
33
public override bool ShouldSkip => ! Platform . IsRunningOnNetFramework ( ) ;
34
34
public override string SkipReason => ".NET Framework only test" ;
You can’t perform that action at this time.
0 commit comments