/**
  * @test
  */
 public function saveBucketProperties()
 {
     $this->bucket->getProps()->setNVal(5);
     $this->assertTrue($this->bucket->save());
     $this->assertEquals(5, $this->cluster->bucketProperties($this->bucket->getName())->getProps()->getNVal());
 }