Exemple #1
0
 public void WhenICallConnectToOnCouchClient()
 {
     try
     {
         couchClient = CouchClient.ConnectTo(address);
     }
     catch (CannotConnectToServerException e)
     {
         exception = e;
     }
 }
 public void GivenIHaveAnInstanceOfCouchClient()
 {
     couchClient = CouchClient.ConnectTo("http://127.0.0.1:5984");
 }