function VendorHardeningPluginTest::testFindBinOverlap
@covers ::findBinOverlap
      
    
@dataProvider providerFindBinOverlap
File
- 
              core/
tests/ Drupal/ Tests/ Composer/ Plugin/ VendorHardening/ VendorHardeningPluginTest.php, line 226  
Class
- VendorHardeningPluginTest
 - @coversDefaultClass \Drupal\Composer\Plugin\VendorHardening\VendorHardeningPlugin[[api-linebreak]] @group VendorHardening
 
Namespace
Drupal\Tests\Composer\Plugin\VendorHardeningCode
public function testFindBinOverlap($expected, $binaries, $clean_paths) : void {
  $plugin = $this->getMockBuilder(VendorHardeningPlugin::class)
    ->disableOriginalConstructor()
    ->getMock();
  $ref_find_bin_overlap = new \ReflectionMethod($plugin, 'findBinOverlap');
  $this->assertSame($expected, $ref_find_bin_overlap->invokeArgs($plugin, [
    $binaries,
    $clean_paths,
  ]));
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.