@@ -190,6 +190,9 @@ public void testNormalCalls() {
190190 ss .registerCallback (events .requestBodyProcessed (), callback );
191191 assertThat (cbp .getCallback (events .requestBodyProcessed ()).apply (null , null ).getAction ())
192192 .isEqualTo (Flow .Action .Noop .INSTANCE );
193+ ss .registerCallback (events .responseBody (), callback );
194+ assertThat (cbp .getCallback (events .responseBody ()).apply (null , null ).getAction ())
195+ .isEqualTo (Flow .Action .Noop .INSTANCE );
193196 ss .registerCallback (events .grpcServerMethod (), callback );
194197 assertThat (cbp .getCallback (events .grpcServerMethod ()).apply (null , null ).getAction ())
195198 .isEqualTo (Flow .Action .Noop .INSTANCE );
@@ -260,6 +263,9 @@ public void testThrowableBlocking() {
260263 ss .registerCallback (events .requestBodyProcessed (), throwback );
261264 assertThat (cbp .getCallback (events .requestBodyProcessed ()).apply (null , null ).getAction ())
262265 .isEqualTo (Flow .Action .Noop .INSTANCE );
266+ ss .registerCallback (events .responseBody (), throwback );
267+ assertThat (cbp .getCallback (events .responseBody ()).apply (null , null ).getAction ())
268+ .isEqualTo (Flow .Action .Noop .INSTANCE );
263269 ss .registerCallback (events .grpcServerMethod (), throwback );
264270 assertThat (cbp .getCallback (events .grpcServerMethod ()).apply (null , null ).getAction ())
265271 .isEqualTo (Flow .Action .Noop .INSTANCE );
0 commit comments