You are here

public function ConfigTest::testGetPathsForPackageMixedCase in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Composer/Plugin/VendorHardening/ConfigTest.php \Drupal\Tests\Composer\Plugin\VendorHardening\ConfigTest::testGetPathsForPackageMixedCase()
  2. 10 core/tests/Drupal/Tests/Composer/Plugin/VendorHardening/ConfigTest.php \Drupal\Tests\Composer\Plugin\VendorHardening\ConfigTest::testGetPathsForPackageMixedCase()

@covers ::getPathsForPackage

File

core/tests/Drupal/Tests/Composer/Plugin/VendorHardening/ConfigTest.php, line 18

Class

ConfigTest
@coversDefaultClass Drupal\Composer\Plugin\VendorHardening\Config @group VendorHardening

Namespace

Drupal\Tests\Composer\Plugin\VendorHardening

Code

public function testGetPathsForPackageMixedCase() {
  $config = $this
    ->getMockBuilder(Config::class)
    ->setMethods([
    'getAllCleanupPaths',
  ])
    ->disableOriginalConstructor()
    ->getMock();
  $config
    ->expects($this
    ->once())
    ->method('getAllCleanupPaths')
    ->willReturn([
    'package' => [
      'path',
    ],
  ]);
  $this
    ->assertSame([
    'path',
  ], $config
    ->getPathsForPackage('pACKage'));
}