Ping() public method

public Ping ( ) : RiakResponse
return RiakResponse
 public void ShouldPing()
 {
     // Arrange.
     var connection = new RiakConnection { Host = "192.168.30.118", Port = 8087 };
     var repository = new RiakManagementRepository(connection);
     
     // Act.
     repository.Ping();
 }