/src/NUnit/mocks/IVerify.cs
# · C# · 18 lines · 8 code · 2 blank · 8 comment · 0 complexity · 210a217f29afaefbf85d168191934792 MD5 · raw file
- // ****************************************************************
- // Copyright 2007, Charlie Poole
- // This is free software licensed under the NUnit license. You may
- // obtain a copy of the license at http://nunit.org
- // ****************************************************************
-
- using System;
-
- namespace NUnit.Mocks
- {
- /// <summary>
- /// The IVerify interface is implemented by objects capable of self-verification.
- /// </summary>
- public interface IVerify
- {
- void Verify();
- }
- }