You are here

public function PoStreamWriterTest::testCloseException in Drupal 9

Same name and namespace in other branches
  1. 8 core/tests/Drupal/Tests/Component/Gettext/PoStreamWriterTest.php \Drupal\Tests\Component\Gettext\PoStreamWriterTest::testCloseException()
  2. 10 core/tests/Drupal/Tests/Component/Gettext/PoStreamWriterTest.php \Drupal\Tests\Component\Gettext\PoStreamWriterTest::testCloseException()

@covers ::close

File

core/tests/Drupal/Tests/Component/Gettext/PoStreamWriterTest.php, line 102

Class

PoStreamWriterTest
@coversDefaultClass \Drupal\Component\Gettext\PoStreamWriter @group Gettext

Namespace

Drupal\Tests\Component\Gettext

Code

public function testCloseException() {
  $this
    ->expectException(\Exception::class, 'Cannot close stream that is not open.');
  $this->poWriter
    ->close();
}