public function testCreatingAnOptionSetPostsToTheOptionSetsResource()
 {
     $this->connection->expects($this->once())->method('post')->with($this->basePath . '/optionsets', (object) array());
     Client::createOptionSet(array());
 }