Closed as not planned
Description
Allow mocking stubs - don't make them final
I'd love to be able to mock stubs
private HelloServiceGrpc.HelloServiceBlockingStub stub;
public void hello(String message) {
stub.hello(message); <-- I should be able to make a unit test that verifies stub.hello() is called and with the right value.
}