[696822] Reset eval completion on error handling
[mono.git] / mcs / class / Mono.CSharp / Test / AssertReportPrinter.cs
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 using Mono.CSharp;
6 using NUnit.Framework;
7
8 namespace MonoTests
9 {
10         class AssertReportPrinter : ReportPrinter
11         {
12                 public override void Print (AbstractMessage msg)
13                 {
14                         Assert.Fail (msg.Text);
15                 }
16         }
17 }