/**
  * Test if option exists if an adapter
  */
 public function testExists()
 {
     $this->assertTrue($this->repository->exists('FIRST'));
     $this->assertFalse($this->repository->exists('NOT FOUND'));
 }