function ExternalCommandRequirementTest::testCheckExternalCommandRequirementsNotAvailable
@covers ::checkExternalCommandRequirements
      
    
File
- 
              core/
tests/ Drupal/ BuildTests/ Framework/ Tests/ ExternalCommandRequirementTest.php, line 24  
Class
- ExternalCommandRequirementTest
 - @coversDefaultClass \Drupal\BuildTests\Framework\ExternalCommandRequirementsTrait[[api-linebreak]] @group Build @group legacy
 
Namespace
Drupal\BuildTests\Framework\TestsCode
public function testCheckExternalCommandRequirementsNotAvailable() : void {
  $this->expectDeprecation('Drupal\\BuildTests\\Framework\\ExternalCommandRequirementsTrait::checkExternalCommandRequirements() is deprecated in drupal:10.2.0 and is removed from drupal:11.0.0. Use Drupal\\TestTools\\Extension\\RequiresComposerTrait instead. See https://www.drupal.org/node/3362239');
  $this->expectDeprecation('The \'@require externalCommand\' annotation for tests is deprecated in drupal:10.2.0 and is removed from drupal:11.0.0. Use Drupal\\TestTools\\Extension\\RequiresComposerTrait instead. See https://www.drupal.org/node/3362239');
  $requires = new UsesCommandRequirements();
  $ref_check_requirements = new \ReflectionMethod($requires, 'checkExternalCommandRequirements');
  // Use a try/catch block because otherwise PHPUnit might think this test is
  // legitimately skipped.
  try {
    $ref_check_requirements->invokeArgs($requires, [
      [
        'externalCommand not_available',
        'externalCommand available_command',
      ],
    ]);
    $this->fail('Unavailable external command requirement should throw a skipped test error exception.');
  } catch (SkippedTestError $exception) {
    $this->assertEquals('Required external commands: not_available', $exception->getMessage());
  }
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.