private static Channel mockChannelWithAttributes() { Channel channel = mock(Channel.class); AttributeMap attrs = new DefaultAttributeMap(); when(channel.attr(any())).then(invocation -> attrs.attr(invocation.getArgument(0))); return channel; }