function StreamWrapperTest::setUp

Overrides KernelTestBase::setUp

File

modules/stream_wrapper_example/tests/src/Kernel/StreamWrapperTest.php, line 37

Class

StreamWrapperTest
Test of the Session Stream Wrapper Class.

Namespace

Drupal\Tests\stream_wrapper_example\Kernel

Code

protected function setUp() : void {
  parent::setUp();
  // We use a mock session here so that our session-based stream wrapper is
  // able to operate. Kernel tests don't normally have a logged-in user, so
  // we mock one.
  $this->container
    ->set('request_stack', $this->createSessionMock());
}