int connectionTimeoutMs,
RetryPolicy retryPolicy,
String namespace) {
final CuratorFramework curator = mock(CuratorFramework.class);
final RetryLoop retryLoop = mock(RetryLoop.class);
when(retryLoop.shouldContinue()).thenReturn(false);
final CuratorZookeeperClient czkClient = mock(CuratorZookeeperClient.class);
when(czkClient.newRetryLoop()).thenReturn(retryLoop);
when(curator.getZookeeperClient()).thenReturn(czkClient);