public function StreamWrapperTest::setUp in Examples for Developers 8
Same name and namespace in other branches
- 3.x modules/stream_wrapper_example/tests/src/Kernel/StreamWrapperTest.php \Drupal\Tests\stream_wrapper_example\Kernel\StreamWrapperTest::setUp()
Overrides KernelTestBase::setUp
File
- 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\KernelCode
public function setUp() {
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());
}