~ubuntu-branches/ubuntu/saucy/monodevelop/saucy-proposed

« back to all changes in this revision

Viewing changes to external/mdtestharness/lib/NSubstitute.xml

  • Committer: Package Import Robot
  • Author(s): Jo Shields
  • Date: 2012-06-22 20:35:35 UTC
  • mfrom: (10.3.2)
  • Revision ID: package-import@ubuntu.com-20120622203535-zrozwvcf6kfk6l6i
Tags: 3.0.3.2+dfsg-1
* [3fd89ae] Imported Upstream version 3.0.3.2+dfsg
* [379a680] Remove old patches we haven't used for ages from git.
* [d71161d] Remove correct_paths_in_monodevelop-core-addins.pc.patch.
  Upstream claim to have fixed this by moving assembly install locations.
* [15dbfb9] Fix install location for MonoDevelop.Gettext.dll.config.
* [26eb434] Fix install location for MonoDevelop.SourceEditor2.dll.config.
* [4169974] Upstream commit 53282c9 which finally reconciles the 
  MonoDevelop.Gettext.dll install location with the 
  monodevelop-core-addins.pc location.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<doc>
 
3
    <assembly>
 
4
        <name>NSubstitute</name>
 
5
    </assembly>
 
6
    <members>
 
7
        <member name="M:NSubstitute.Raise.EventWith``1(System.Object,``0)">
 
8
            <summary>
 
9
            Raise an event for an <c>EventHandler&lt;TEventArgs&gt;</c> event with the provided <paramref name="sender"/> and <paramref name="eventArgs"/>.
 
10
            </summary>
 
11
        </member>
 
12
        <member name="M:NSubstitute.Raise.EventWith``1(``0)">
 
13
            <summary>
 
14
            Raise an event for an <c>EventHandler&lt;TEventArgs&gt;</c> event with the substitute as the sender and the provided <paramref name="eventArgs" />.
 
15
            </summary>
 
16
        </member>
 
17
        <member name="M:NSubstitute.Raise.EventWith``1">
 
18
            <summary>
 
19
            Raise an event for an <c>EventHandler&lt;EventArgsT&gt;</c> event with the substitute as the sender
 
20
            and with a default instance of <typeparamref name="TEventArgs" />.
 
21
            </summary>
 
22
        </member>
 
23
        <member name="M:NSubstitute.Raise.Event">
 
24
            <summary>
 
25
            Raise an event for an <c>EventHandler</c> or <c>EventHandler&lt;EventArgs&gt;</c> event with the substitute
 
26
            as the sender and with empty <c>EventArgs</c>.
 
27
            </summary>
 
28
        </member>
 
29
        <member name="M:NSubstitute.Raise.Event``1(System.Object[])">
 
30
            <summary>
 
31
            Raise an event of type <typeparamref name="THandler" /> with the provided arguments. If no arguments are provided
 
32
            NSubstitute will try and provide reasonble defaults.
 
33
            </summary>
 
34
        </member>
 
35
        <member name="T:NSubstitute.Substitute">
 
36
            <summary>
 
37
            Create a substitute for one or more types. For example: <c>Substitute.For&lt;ISomeType&gt;()</c> 
 
38
            </summary>
 
39
        </member>
 
40
        <member name="M:NSubstitute.Substitute.For``1(System.Object[])">
 
41
            <summary>
 
42
            Substitute for an interface or class.
 
43
            <para>Be careful when specifying a class, as all non-virtual members will actually be executed. Only virtual members 
 
44
            can be recorded or have return values specified.</para>
 
45
            </summary>
 
46
            <typeparam name="T">The type of interface or class to substitute.</typeparam>
 
47
            <param name="constructorArguments">Arguments required to construct a class being substituted. Not required for interfaces or classes with default constructors.</param>
 
48
            <returns>A substitute for the interface or class.</returns>
 
49
        </member>
 
50
        <member name="M:NSubstitute.Substitute.For``2(System.Object[])">
 
51
            <summary>
 
52
            <para>Substitute for multiple interfaces or a class that implements an interface. At most one class can be specified.</para>
 
53
            <para>Be careful when specifying a class, as all non-virtual members will actually be executed. Only virtual members 
 
54
            can be recorded or have return values specified.</para>
 
55
            </summary>
 
56
            <typeparam name="T1">The type of interface or class to substitute.</typeparam>
 
57
            <typeparam name="T2">An additional interface or class (maximum of one class) the substitute should implement.</typeparam>
 
58
            <param name="constructorArguments">Arguments required to construct a class being substituted. Not required for interfaces or classes with default constructors.</param>
 
59
            <returns>A substitute of type T1, that also implements T2.</returns>
 
60
        </member>
 
61
        <member name="M:NSubstitute.Substitute.For``3(System.Object[])">
 
62
            <summary>
 
63
            <para>Substitute for multiple interfaces or a class that implements multiple interfaces. At most one class can be specified.</para>
 
64
            If additional interfaces are required use the <see cref="M:NSubstitute.Substitute.For(System.Type[],System.Object[])"/> overload.
 
65
            <para>Be careful when specifying a class, as all non-virtual members will actually be executed. Only virtual members 
 
66
            can be recorded or have return values specified.</para>
 
67
            </summary>
 
68
            <typeparam name="T1">The type of interface or class to substitute.</typeparam>
 
69
            <typeparam name="T2">An additional interface or class (maximum of one class) the substitute should implement.</typeparam>
 
70
            <typeparam name="T3">An additional interface or class (maximum of one class) the substitute should implement.</typeparam>
 
71
            <param name="constructorArguments">Arguments required to construct a class being substituted. Not required for interfaces or classes with default constructors.</param>
 
72
            <returns>A substitute of type T1, that also implements T2 and T3.</returns>
 
73
        </member>
 
74
        <member name="M:NSubstitute.Substitute.For(System.Type[],System.Object[])">
 
75
            <summary>
 
76
            <para>Substitute for multiple interfaces or a class that implements multiple interfaces. At most one class can be specified.</para>
 
77
            <para>Be careful when specifying a class, as all non-virtual members will actually be executed. Only virtual members 
 
78
            can be recorded or have return values specified.</para>
 
79
            </summary>
 
80
            <param name="typesToProxy">The types of interfaces or a type of class and multiple interfaces the substitute should implement.</param>
 
81
            <param name="constructorArguments">Arguments required to construct a class being substituted. Not required for interfaces or classes with default constructors.</param>
 
82
            <returns>A substitute implementing the specified types.</returns>
 
83
        </member>
 
84
    </members>
 
85
</doc>