File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
LibGit2Sharp.Tests/TestHelpers Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 66
77namespace 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" ;
You can’t perform that action at this time.
0 commit comments