JeppeSN

Results 3 issues of JeppeSN

It is easy to create benchmarks, for example as shown in [README.md](https://github.com/dotnet/BenchmarkDotNet/blob/master/README.md): ``` // attributes here public class Md5VsSha256 { // setups and benchmarks here } ``` However, if I...

up-for-grabs
Area:Validators
good first issue

### Description I find that the analyzers should warn people if they say `.Should().ThrowAsync()` and similar, without actually awaiting the task produced by Fluent Assertions. ### Complete minimal example reproducing...

enhancement

Seen with Moq 4.18.4. Suppose I have this interface: ```csharp public interface I { string GetStuff(int input); void DoStuff(int input); Task GetStuffAsync(int input); Task DoStuffAsync(int input); } ``` So a...