@Test
  public void shouldNotApplyFlowControl_onStatusSubresourceRequest() throws Exception {
    // Given
    setUpRequestPath("http://www.example.com/status/" + Randoms.randomString());

    // When
    flowControlledRequestFilter.filter(mockContainerRequestContext);

    // Then
    verifyZeroInteractions(mockrestAdapterStartLatch, mockRateLimiter);
  }