Skip to content

Commit ab73157

Browse files
Remove Google Groups hyperlinks (nsubstitute#804)
Co-authored-by: Julian Verdurmen <[email protected]>
1 parent 72d146d commit ab73157

File tree

4 files changed

+3
-6
lines changed

4 files changed

+3
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Perfect for those new to testing, and for others who would just like to to get t
2222

2323
### Getting help
2424

25-
If you have questions, feature requests or feedback on NSubstitute please [raise an issue](https://github.com/nsubstitute/NSubstitute/issues) on our project site. All questions are welcome via our project site, but for "how-to"-style questions you can also try [StackOverflow with the \[nsubstitute\] tag](https://stackoverflow.com/tags/nsubstitute), 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 [NSubstitute discussion group](https://groups.google.com/group/nsubstitute) if you prefer.
25+
If you have questions, feature requests or feedback on NSubstitute please [raise an issue](https://github.com/nsubstitute/NSubstitute/issues) on our project site. All questions are welcome via our project site, but for "how-to"-style questions you can also try [StackOverflow with the \[nsubstitute\] tag](https://stackoverflow.com/tags/nsubstitute), 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).
2626

2727
### Basic use
2828

docs/help.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
<p>For more in depth information start with <a href="/help/creating-a-substitute">Creating a substitute</a>.</p>
1010

11-
<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="{{ site.repo }}/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>
11+
<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="{{ site.repo }}/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).</p>

docs/help/_posts/2013-03-01-return-for-all.markdown

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ We can return a specific value for all calls to a substitute using `sub.ReturnsF
77

88
**Note: we need `using NSubstitute.Extensions` to import the `.ReturnsForAll<T>()` extension method.**
99

10-
The type must match exactly: `.ReturnsForAll<Cat>(cat)` will not set a return value for a call that returns `Animal`, even if `Cat` inherits from `Animal`. To return for the super-type, use `.ReturnsForAll<Animal>(cat)`. (If you'd like a change in this behaviour, please [let us know](https://groups.google.com/forum/#!forum/nsubstitute)).
10+
The type must match exactly: `.ReturnsForAll<Cat>(cat)` will not set a return value for a call that returns `Animal`, even if `Cat` inherits from `Animal`. To return for the super-type, use `.ReturnsForAll<Animal>(cat)`. (If you'd like a change in this behaviour, please [let us know](https://github.com/nsubstitute/NSubstitute/issues)).
1111

1212
There is also an overload that takes a `Func<CallInfo,T>` so the value to return will be calculated each time.
1313

tests/NSubstitute.Acceptance.Specs/FieldReports/Regression_ReceivedClearsStub.cs

-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,6 @@ namespace NSubstitute.Acceptance.Specs.FieldReports;
44

55
public class Regression_ReceivedClearsStub
66
{
7-
// Source:
8-
// https://groups.google.com/d/msg/nsubstitute/IUL8cGdv6C4/gF_b3iNeBwAJ
9-
107
public interface IFoo
118
{
129
IList<string> GetTheStrings();

0 commit comments

Comments
 (0)