2
using System.Reflection;
3
using System.Diagnostics;
8
/// Summary description for NotRunnableTestCase.
10
public class NotRunnableTestCase : TestCase
12
public NotRunnableTestCase(MethodInfo method, string reason) : base(method.DeclaringType.FullName, method.Name)
15
IgnoreReason = reason;
18
public override void Run(TestCaseResult result)
20
result.NotRun(base.IgnoreReason);