-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhelp.html
116 lines (78 loc) · 5.23 KB
/
help.html
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>NSubstitute: Docs and getting help</title>
<link rel="stylesheet" href="/css/style.css" type="text/css" />
<script src="/js/scripts.js"></script>
</head>
<body>
<div id="header">
<a href="/" alt="NSubstitute">
<img src="/images/nsubstitute-100x100.png" style="float: left; margin-right: 15px; width: 100px; height: 100px;" />
<h1 class="copy-disabled" style="display: inline"> NSubstitute </h1> <br />
<span><i>A friendly substitute for .NET mocking libraries</i></span>
</a>
</div>
<div id="nav">
<a href="/help/getting-started">Get started</a> |
<a href="/help.html">Docs and getting help</a> |
<a href="https://github.com/nsubstitute/NSubstitute">NSub on GitHub</a>
</div>
<div id="content">
<div id="post">
<div id="post-index">
<ul>
<li><a href="/help/getting-started/">Getting started</a></li>
<li><a href="/help/creating-a-substitute/">Creating a substitute</a></li>
<li><a href="/help/set-return-value/">Setting a return value</a></li>
<li><a href="/help/return-for-args/">Return for specific args</a></li>
<li><a href="/help/return-for-any-args/">Return for any args</a></li>
<li><a href="/help/return-from-function/">Return from a function</a></li>
<li><a href="/help/multiple-returns/">Multiple return values</a></li>
<li><a href="/help/replacing-return-values/">Replacing return values</a></li>
<li><a href="/help/received-calls/">Checking received calls</a></li>
<li><a href="/help/clear-received-calls/">Clearing received calls</a></li>
<li><a href="/help/argument-matchers/">Argument matchers</a></li>
<li><a href="/help/callbacks/">Callbacks, void calls and When..Do</a></li>
<li><a href="/help/throwing-exceptions/">Throwing exceptions</a></li>
<li><a href="/help/configure/">Safe configuration and overlapping calls</a></li>
<li><a href="/help/raising-events/">Raising events</a></li>
<li><a href="/help/auto-and-recursive-mocks/">Auto and recursive mocks</a></li>
<li><a href="/help/setting-out-and-ref-arguments/">Setting out and ref args</a></li>
<li><a href="/help/actions-with-arguments/">Actions with argument matchers</a></li>
<li><a href="/help/received-in-order/">Checking call order</a></li>
<li><a href="/help/partial-subs/">Partial subs and test spies</a></li>
<li><a href="/help/return-for-all/">Return for all calls of a type</a></li>
<li><a href="/help/threading/">Threading</a></li>
<li><a href="/help/compat-args/">Compatibility argument matchers</a></li>
<li><a href="/help/nsubstitute-analysers/">NSubstitute.Analyzers</a></li>
<li><a href="/help/how-nsub-works/">How NSubstitute works</a></li>
<li><a href="/help/search/">Search</a></li>
</ul>
</div>
<div id="post-content">
<h1>Docs and getting help</h1>
<p>Read <a href="/help/getting-started">Getting started</a> for a quick tour of NSubstitute.</p>
<p>For more in depth information start with <a href="/help/creating-a-substitute">Creating a substitute</a>.</p>
<p>If you can't find the answer you're looking for, or if you have feature requests or feedback on NSubstitute, please <a href="https://github.com/nsubstitute/NSubstitute/issues">raise an issue</a> on our project site. All questions are welcome via our project site, but for "how-to"-style questions you can also try <a href="https://stackoverflow.com/tags/nsubstitute">StackOverflow with the [nsubstitute] tag</a>, which often leads to very good answers from the larger programming community. StackOverflow is especially useful if your question also relates to other libraries that our team may not be as familiar with (e.g. NSubstitute with Entity Framework). You can also head on over to the <a href="https://groups.google.com/group/nsubstitute">NSubstitute discussion group</a> if you prefer.</p>
<a class="edit-link" href="https://github.com/nsubstitute/NSubstitute/tree/main/docs/help.html">
<div class="pencil"></div>
<span class="edit-text">Edit this page</span>
</a>
<div id="page-navigation">
<div class="previous">
</div>
<div class="next">
</div>
</div>
</div>
</div>
</div>
<div id="footer">
NSubstitute is open source software, licensed under the <a href="https://www.opensource.org/licenses/bsd-license.php">BSD License</a>.<br />
The NSubstitute project is possible <a href="https://github.com/nsubstitute/NSubstitute/blob/master/acknowledgements.md">thanks to a number of other software projects</a>. We acknowledge their awesomeness.<br />
NSubstitute logo donated by <a href="https://troyhunt.com">Troy Hunt</a>.
</div>
</body>
</html>