examples: Update in-process sources in examples (#11952)

Update in-process sources location in examples since they have been migrated from core artifacts.
This commit is contained in:
Emmanuel Ferdman 2025-03-10 07:20:20 +02:00 committed by GitHub
parent f3f054a0a4
commit 61a110d962
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -153,9 +153,9 @@ Example bugs not caught by mocked stub tests include:
For testing a gRPC client, create the client with a real stub
using an
[InProcessChannel](../core/src/main/java/io/grpc/inprocess/InProcessChannelBuilder.java),
[InProcessChannel](../inprocess/src/main/java/io/grpc/inprocess/InProcessChannelBuilder.java),
and test it against an
[InProcessServer](../core/src/main/java/io/grpc/inprocess/InProcessServerBuilder.java)
[InProcessServer](../inprocess/src/main/java/io/grpc/inprocess/InProcessServerBuilder.java)
with a mock/fake service implementation.
For testing a gRPC server, create the server as an InProcessServer,