2006-05-09 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / nunit20 / mocks / IVerify.cs
1 using System;
2
3 namespace NUnit.Mocks
4 {
5         /// <summary>
6         /// The IVerify interface is implemented by objects capable of self-verification.
7         /// </summary>
8         public interface IVerify
9         {
10                 void Verify();
11         }
12 }