Итак, у меня есть файл простого модульного теста, подобный этому:
class testService extends UnitTestCase {
function setUp() {
parent::setUp();
}
function testCall() {
$service = \Drupal::service('plugin.manager.rest');
}
...
}
vendor / bin / phpunit -c core / modules / custom / имя-модуля /
имеет ошибкуReflectionException: Класс не существует
в Devel, я могу выполнить PHP с этой строкой:
$service = \Drupal::service('plugin.manager.rest');
Что мне не хватает?
Спасибо