PageRenderTime 60ms CodeModel.GetById 23ms RepoModel.GetById 0ms app.codeStats 0ms

/src/NUnit/interfaces/IAgency.cs

#
C# | 23 lines | 8 code | 2 blank | 13 comment | 0 complexity | 36f6f5e667c90ec516fe2a6b71982e2d MD5 | raw file
Possible License(s): GPL-2.0
  1. // ****************************************************************
  2. // Copyright 2008, 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.Core
  8. {
  9. /// <summary>
  10. /// The IAgency interface is implemented by a TestAgency in
  11. /// order to allow TestAgents to register with it.
  12. /// </summary>
  13. public interface IAgency
  14. {
  15. /// <summary>
  16. /// Registers an agent with an agency
  17. /// </summary>
  18. /// <param name="agent"></param>
  19. void Register(TestAgent agent);
  20. }
  21. }