public function testLoggerGetterSetter()
{
$config = new Config('phprest', 1, true);
$config->setLoggerConfig(new LoggerConfig('test'));
$config->setLoggerService(new LoggerService());
$this->assertInstanceOf('\\Phprest\\Service\\Logger\\Config', $config->getLoggerConfig());
$this->assertInstanceOf('\\Phprest\\Service\\Logger\\Service', $config->getLoggerService());
}