Исходный код вики Сценарии
Версия 1.2 от Alexandr Fokin на 2023/04/26 10:15
Последние авторы
| author | version | line-number | content |
|---|---|---|---|
| 1 | |(% style="width:147px" %)Простой пример|(% style="width:1346px" %){{code language="c#"}}var moq = new Mock<IReadInterface>(); | ||
| 2 | moq | ||
| 3 | .Setup(e => e.MethodAsync(It.IsAny<string>())) | ||
| 4 | .Returns( | ||
| 5 | ValueTask.FromResult( | ||
| 6 | new Result() | ||
| 7 | ) | ||
| 8 | );{{/code}} | ||
| 9 | |(% style="width:147px" %)Mocking generic methods|(% style="width:1346px" %)Mocking generic methods in Moq without specifying T | ||
| 10 | [[https:~~/~~/stackoverflow.com/questions/20072429/mocking-generic-methods-in-moq-without-specifying-t>>https://stackoverflow.com/questions/20072429/mocking-generic-methods-in-moq-without-specifying-t]] | ||
| 11 | |(% style="width:147px" %) |(% style="width:1346px" %) | ||
| 12 | |||
| 13 |