You are here

public function FileUrlGeneratorTest::testGenerateMissingStreamWrapper in Drupal 10

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/File/FileUrlGeneratorTest.php \Drupal\KernelTests\Core\File\FileUrlGeneratorTest::testGenerateMissingStreamWrapper()

Tests missing stream handler.

@covers ::generate

File

core/tests/Drupal/KernelTests/Core/File/FileUrlGeneratorTest.php, line 40

Class

FileUrlGeneratorTest
@coversDefaultClass \Drupal\Core\File\FileUrlGenerator

Namespace

Drupal\KernelTests\Core\File

Code

public function testGenerateMissingStreamWrapper() {
  $this
    ->expectException(InvalidStreamWrapperException::class);
  $result = $this->fileUrlGenerator
    ->generate("foo://bar");
}