PageRenderTime 39ms CodeModel.GetById 16ms RepoModel.GetById 1ms app.codeStats 0ms

/src/NUnit/mocks/IVerify.cs

#
C# | 18 lines | 8 code | 2 blank | 8 comment | 0 complexity | 210a217f29afaefbf85d168191934792 MD5 | raw file
Possible License(s): GPL-2.0
  1. // ****************************************************************
  2. // Copyright 2007, Charlie Poole
  3. // This is free software licensed under the NUnit license. You may
  4. // obtain a copy of the license at http://nunit.org
  5. // ****************************************************************
  6. using System;
  7. namespace NUnit.Mocks
  8. {
  9. /// <summary>
  10. /// The IVerify interface is implemented by objects capable of self-verification.
  11. /// </summary>
  12. public interface IVerify
  13. {
  14. void Verify();
  15. }
  16. }