525354555657585960
final Limit limit = Mockito.mock(Limit.class); final Throttled throttled = new Throttled(limit, 23); Mockito.when(limit.json()).thenReturn( Json.createObjectBuilder().add("absent", "absentValue").build() ); throttled.json(); } }