using System; namespace NUnit.Mocks { /// /// The IVerify interface is implemented by objects capable of self-verification. /// public interface IVerify { void Verify(); } }