• Модуль: bitrixcloud
  • Путь к файлу: ~/bitrix/modules/bitrixcloud/classes/general/monitoring_result.php
  • Класс: CBitrixCloudMonitoringDomainResult
  • Вызов: CBitrixCloudMonitoringDomainResult::setTests
public function setTests(array $tests)
{
	foreach ($tests as $test)
	{
		if (
			is_object($test)
			&& $test instanceof CBitrixCloudMonitoringTest
		)
		{
			$this->tests[$test->getName()] = $test;
		}
	}
	return $this;
}