I have a dotnet core 3 console app project with a generated gRPC client (using the Protobuf element in the csproj below). I would like to unit test my code. Is there a way to generate my gRPC client to include interfaces for the generated classes so that I can properly mock out the gRPC client?
Thank you for your time!
<ItemGroup>
<Protobuf Include="..\..\Data\Protos\*" GrpcServices="Client" />
</ItemGroup>