From a0edc9bccb45a0612b60e0ca500aac361ae70f4f Mon Sep 17 00:00:00 2001 From: Julian Verdurmen <304NotModified@users.noreply.github.com> Date: Tue, 30 Apr 2024 23:22:43 +0200 Subject: [PATCH] Remove Google Groups hyperlinks --- README.md | 2 +- docs/help.html | 2 +- docs/help/_posts/2013-03-01-return-for-all.markdown | 2 +- .../FieldReports/Regression_ReceivedClearsStub.cs | 3 --- 4 files changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 85aae2da..96d435fa 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Perfect for those new to testing, and for others who would just like to to get t ### Getting help -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. +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). ### Basic use diff --git a/docs/help.html b/docs/help.html index fa86b71a..89af5a93 100644 --- a/docs/help.html +++ b/docs/help.html @@ -8,4 +8,4 @@

For more in depth information start with Creating a substitute.

-

If you can't find the answer you're looking for, or if you have feature requests or feedback on NSubstitute, please raise an issue 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, 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 if you prefer.

+

If you can't find the answer you're looking for, or if you have feature requests or feedback on NSubstitute, please raise an issue 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, 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).

diff --git a/docs/help/_posts/2013-03-01-return-for-all.markdown b/docs/help/_posts/2013-03-01-return-for-all.markdown index 46a3f0d1..56fa5060 100644 --- a/docs/help/_posts/2013-03-01-return-for-all.markdown +++ b/docs/help/_posts/2013-03-01-return-for-all.markdown @@ -7,7 +7,7 @@ We can return a specific value for all calls to a substitute using `sub.ReturnsF **Note: we need `using NSubstitute.Extensions` to import the `.ReturnsForAll()` extension method.** -The type must match exactly: `.ReturnsForAll(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(cat)`. (If you'd like a change in this behaviour, please [let us know](https://groups.google.com/forum/#!forum/nsubstitute)). +The type must match exactly: `.ReturnsForAll(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(cat)`. (If you'd like a change in this behaviour, please [let us know](https://github.com/nsubstitute/NSubstitute/issues)). There is also an overload that takes a `Func` so the value to return will be calculated each time. diff --git a/tests/NSubstitute.Acceptance.Specs/FieldReports/Regression_ReceivedClearsStub.cs b/tests/NSubstitute.Acceptance.Specs/FieldReports/Regression_ReceivedClearsStub.cs index 5e89894a..60cba5dd 100644 --- a/tests/NSubstitute.Acceptance.Specs/FieldReports/Regression_ReceivedClearsStub.cs +++ b/tests/NSubstitute.Acceptance.Specs/FieldReports/Regression_ReceivedClearsStub.cs @@ -4,9 +4,6 @@ namespace NSubstitute.Acceptance.Specs.FieldReports; public class Regression_ReceivedClearsStub { - // Source: - // https://groups.google.com/d/msg/nsubstitute/IUL8cGdv6C4/gF_b3iNeBwAJ - public interface IFoo { IList GetTheStrings();