2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / nunit20 / mocks / ICall.cs
1 using System;
2
3 namespace NUnit.Mocks
4 {
5         /// <summary>
6         /// The ICall interface is implemented by objects that can be called
7         /// with an array of arguments and return a value.
8         /// </summary>
9         public interface ICall
10         {
11                 /// <summary>
12                 /// Process a call with a possibly empty set of arguments.
13                 /// </summary>
14                 /// <param name="args">Arguments for this call</param>
15                 /// <returns>An implementation-defined return value</returns>
16                 object Call( object[] args );
17         }
18 }