function SessionConfigurationTest::createSessionConfiguration
Same name in other branches
- 9 core/tests/Drupal/Tests/Core/Session/SessionConfigurationTest.php \Drupal\Tests\Core\Session\SessionConfigurationTest::createSessionConfiguration()
- 8.9.x core/tests/Drupal/Tests/Core/Session/SessionConfigurationTest.php \Drupal\Tests\Core\Session\SessionConfigurationTest::createSessionConfiguration()
- 10 core/tests/Drupal/Tests/Core/Session/SessionConfigurationTest.php \Drupal\Tests\Core\Session\SessionConfigurationTest::createSessionConfiguration()
Constructs a partially mocked SUT.
Return value
\Drupal\Core\Session\SessionConfiguration|\PHPUnit\Framework\MockObject\MockObject
8 calls to SessionConfigurationTest::createSessionConfiguration()
- SessionConfigurationTest::testConstructorDefaultSettings in core/
tests/ Drupal/ Tests/ Core/ Session/ SessionConfigurationTest.php - Tests constructor's default settings.
- SessionConfigurationTest::testCookieSecure in core/
tests/ Drupal/ Tests/ Core/ Session/ SessionConfigurationTest.php - Tests whether the session.cookie_secure ini settings is computed correctly.
- SessionConfigurationTest::testCookieSecureNotOverridable in core/
tests/ Drupal/ Tests/ Core/ Session/ SessionConfigurationTest.php - Tests that session.cookie_secure ini settings cannot be overridden.
- SessionConfigurationTest::testEnforcedCookieDomain in core/
tests/ Drupal/ Tests/ Core/ Session/ SessionConfigurationTest.php - Tests the constructor injected session.cookie_domain ini setting.
- SessionConfigurationTest::testEnforcedSessionNameViaCookieDomain in core/
tests/ Drupal/ Tests/ Core/ Session/ SessionConfigurationTest.php - Tests whether the session.name ini settings is computed correctly.
File
-
core/
tests/ Drupal/ Tests/ Core/ Session/ SessionConfigurationTest.php, line 21
Class
- SessionConfigurationTest
- @coversDefaultClass \Drupal\Core\Session\SessionConfiguration @group Session
Namespace
Drupal\Tests\Core\SessionCode
protected function createSessionConfiguration($options = []) {
return $this->getMockBuilder('Drupal\\Core\\Session\\SessionConfiguration')
->onlyMethods([
'drupalValidTestUa',
])
->setConstructorArgs([
$options,
])
->getMock();
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.