/**
  * Tests the set method.
  */
 public function testSet()
 {
     $optionValue = $this->optionService->get('twomartens.core', 'optionOne');
     $optionValue->setValue(false);
     $this->optionService->set('twomartens.core', 'optionOne', $optionValue);
     $firstOption = $this->optionService->get('twomartens.core', 'optionOne');
     $this->assertFalse($firstOption->getValue());
     $this->assertEquals('boolean', $firstOption->getType());
 }