-
The messages defined in MoQ Transport include variable length components:
* name space,
* track name,
* setup path,
* go away URI,
* authorization info,
* number of supported versions,
* numb…
-
Consider removing Moq due to the following concerns.
- [Devlooped.SponsorLink must not perform I/O outside of compiler APIs ](https://github.com/devlooped/SponsorLink/issues/10)
- [Harvesting user e…
-
```
Say you have a method receiving a params object[] argument:
mock.Setup(x => x.Do(It.IsAny()))
.Returns(s => Console.WriteLine(s));
Error thrown is:
"System.ArgumentException: Object of type…
-
Find out if there is any hooks in Moq to have a method called when a generic mockable method is called to get rid of calls such as the following:
```
_moq.Of().Setup(x => x.Get())
.Returns(_moq.O…
-
Right now when Moq builds an error message containing values, these values are formatted by a regular `.ToString()` which leads to error messages like below. The problem I currently have is that I wou…
Helco updated
2 months ago
-
Hello,
I'm trying to unit test my solution using Moq framework, but since Moq cannot mock non-virtual type members I always get an Unsupported Error Type. Is there any work around for Mock MangoPayAp…
-
I would like to mock an external interface provided by the [AWS SDK](https://github.com/aws/aws-sdk-go-v2). To do so, I create a local type alias:
```go
// dynamo.go
package dynamo
import "git…
-
The URL, (http://www.moqthis.com) (listed in [_config.yaml](https://github.com/moq/moq.github.io/blob/master/_config.yml)) is likely no longer owned? It looks like a gambling site.
```
url: htt…
-
Hi
Thank you for this helpful project. I have been using it for a while, and the experience is very good.
Recently written a test that is supposed to make sure an error is logged when a condition…
-
This issue is to track our activities regarding rework of Moq integration. Currently we are creating `Mock` using reflection and then configure each method individually using reflection. Due to this a…