/**
  * @covers Xoops\Core\Text\Sanitizer\DefaultConfiguration::buildDefaultConfiguration
  * @covers Xoops\Core\Text\Sanitizer\DefaultConfiguration::registerComponent
  * @covers Xoops\Core\Text\Sanitizer\SanitizerComponent::getDefaultConfig
  */
 public function testBuildDefaultConfiguration()
 {
     $defaultConfig = $this->object->buildDefaultConfiguration();
     $this->assertTrue(is_array($defaultConfig));
     $this->assertArrayHasKey('sanitizer', $defaultConfig);
     $this->assertArrayHasKey('xoopscode', $defaultConfig);
 }