File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
UnitTests/Mono.Debugging.Tests/Shared Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -61,14 +61,14 @@ protected DebugTests (string engineId)
61
61
EngineId = engineId ;
62
62
}
63
63
64
- public void IgnoreCorDebugger ( string message = "" )
64
+ public virtual void IgnoreCorDebugger ( string message = "" )
65
65
{
66
66
if ( ! ( Session is SoftDebuggerSession ) ) {
67
67
Assert . Ignore ( message ) ;
68
68
}
69
69
}
70
70
71
- public void IgnoreSoftDebugger ( string message = "" )
71
+ public virtual void IgnoreSoftDebugger ( string message = "" )
72
72
{
73
73
if ( Session is SoftDebuggerSession ) {
74
74
Assert . Ignore ( message ) ;
@@ -126,14 +126,14 @@ public virtual void TearDown ()
126
126
127
127
partial void TearDownPartial ( ) ;
128
128
129
- protected string TargetExePath
129
+ protected virtual string TargetExePath
130
130
{
131
131
get {
132
132
return Path . Combine ( TargetExeDirectory , TestAppExeName ) ;
133
133
}
134
134
}
135
135
136
- protected void Start ( string test )
136
+ protected virtual void Start ( string test )
137
137
{
138
138
TestName = test ;
139
139
Session = CreateSession ( test , EngineId ) ;
You can’t perform that action at this time.
0 commit comments