Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IMock.cs « mocks « NUnitMocks « nunit24 « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 43d1e09c3490243d0b188d86892f75b271bd468a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
// ****************************************************************
// 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/?p=license&r=2.4
// ****************************************************************

using System;

namespace NUnit.Mocks
{
	/// <summary>
	/// Summary description for IMock.
	/// </summary>
	public interface IMock : IVerify, ICallHandler
	{
		/// <summary>
		/// The name of this mock - used in messages
		/// </summary>
		string Name { get; }
	
		/// <summary>
		/// True if unexpected calls should cause an error, false to ignore them
		/// </summary>
		bool Strict { get; set; }

		/// <summary>
		/// Set up to expect a call to a method with a set of arguments
		/// </summary>
		/// <param name="methodName">The name of the method</param>
		/// <param name="args">Arguments for this call</param>
		void Expect( string methodName, params object[] args );

		void Expect( string MethodName );

		/// <summary>
		/// Set up expectation that the named method will not be called
		/// </summary>
		/// <param name="methodName">The name of the method</param>
		void ExpectNoCall( string methodName );

		/// <summary>
		/// Set up to expect a call to a method with a set of arguments.
		/// The specified value will be returned.
		/// </summary>
		/// <param name="methodName">The name of the method</param>
		/// <param name="returnVal">The value to be returned</param>
		/// <param name="args">Arguments for this call</param>
		void ExpectAndReturn( string methodName, object returnVal, params object[] args );

		/// <summary>
		/// Set up to expect a call to a method with a set of arguments.
		/// The specified exception will be thrown.
		/// </summary>
		/// <param name="methodname">The name of the method</param>
		/// <param name="exception">The exception to throw</param>
		/// <param name="args">Arguments for this call</param>
		void ExpectAndThrow( string methodname, Exception exception, params object[] args );

		/// <summary>
		/// Set value to return for a method or property called with any arguments
		/// </summary>
		/// <param name="methodName">The name of the method</param>
		/// <param name="returnVal">The value to be returned</param>
		void SetReturnValue( string methodName, object returnVal );
	}
}