public void SetUp()
        {
            var configuration  = new ClientConfiguration();
            var clusterManager = new ClusterController(configuration, (p) =>
            {
                var operation = new FakeOperation(new ManualByteConverter());
                operation.SetOperationResult(new FakeOperationResult(operation)
                {
                    Message = "nmv",
                    Cas     = 231,
                    Status  = ResponseStatus.VBucketBelongsToAnotherServer,
                    Success = false,
                    Value   = string.Empty
                });
                return(new FakeIOStrategy <FakeOperation>(operation));
            });

            _cluster = new Cluster(configuration, clusterManager);
        }
        public void SetUp()
        {
            var configuration = new ClientConfiguration();
            var clusterManager = new ClusterManager(configuration, (p) =>
            {
                var operation = new FakeOperation(new ManualByteConverter());
                operation.SetOperationResult(new FakeOperationResult(operation)
                {
                    Message = "nmv",
                    Cas = 231,
                    Status = ResponseStatus.VBucketBelongsToAnotherServer,
                    Success = false,
                    Value = string.Empty
                });
                return new FakeIOStrategy<FakeOperation>(operation);
            });
 
            _cluster = new CouchbaseCluster(configuration, clusterManager);
        }