public interface MyInterface
{
public sealed Task SealedMethod(Foo foo) => UnsealedMethod(foo.Name);
}
When I mock this interface and inject into the class I am testing, I get an exception thrown about it missing the sealed method. I was wondering whether there would be any support for this kind of interface.

