Skip to content

Commit 1913ef2

Browse files
committed
Some setup methods were made virtual.
1 parent 2ec5530 commit 1913ef2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

UnitTests/Mono.Debugging.Tests/Shared/DebugTests.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,14 +61,14 @@ protected DebugTests (string engineId)
6161
EngineId = engineId;
6262
}
6363

64-
public void IgnoreCorDebugger (string message = "")
64+
public virtual void IgnoreCorDebugger (string message = "")
6565
{
6666
if (!(Session is SoftDebuggerSession)) {
6767
Assert.Ignore (message);
6868
}
6969
}
7070

71-
public void IgnoreSoftDebugger (string message = "")
71+
public virtual void IgnoreSoftDebugger (string message = "")
7272
{
7373
if (Session is SoftDebuggerSession) {
7474
Assert.Ignore (message);
@@ -126,14 +126,14 @@ public virtual void TearDown ()
126126

127127
partial void TearDownPartial ();
128128

129-
protected string TargetExePath
129+
protected virtual string TargetExePath
130130
{
131131
get{
132132
return Path.Combine (TargetExeDirectory, TestAppExeName);
133133
}
134134
}
135135

136-
protected void Start (string test)
136+
protected virtual void Start (string test)
137137
{
138138
TestName = test;
139139
Session = CreateSession (test, EngineId);

0 commit comments

Comments
 (0)