setSystemConfiguration() публичный Метод

(non-PHPdoc)
См. также: AppserverIo\Appserver\Core\Api\ServiceInterface::setSystemConfiguration()
public setSystemConfiguration ( AppserverIo\Appserver\Core\Interfaces\SystemConfigurationInterface $systemConfiguration ) : AppserverIo\Appserver\Core\Api\ServiceInterface
$systemConfiguration AppserverIo\Appserver\Core\Interfaces\SystemConfigurationInterface The system configuration
Результат AppserverIo\Appserver\Core\Api\ServiceInterface
 /**
  * Test if the getter/setter for the system configuration.
  *
  * @return null
  */
 public function testGetSetSystemConfiguration()
 {
     $systemConfiguration = $this->service->getSystemConfiguration();
     $this->service->setSystemConfiguration($systemConfiguration);
     $this->assertSame($systemConfiguration, $this->service->getSystemConfiguration());
 }