function CsrfTokenGeneratorTest::testGetWithNoHashSalt
Tests the exception thrown when no 'hash_salt' is provided in settings.
@covers ::get
      
    
File
- 
              core/tests/ Drupal/ Tests/ Core/ Access/ CsrfTokenGeneratorTest.php, line 206 
Class
- CsrfTokenGeneratorTest
- Tests the CsrfTokenGenerator class.
Namespace
Drupal\Tests\Core\AccessCode
public function testGetWithNoHashSalt() : void {
  // Update settings with no hash salt.
  new Settings([]);
  $generator = new CsrfTokenGenerator($this->privateKey, $this->sessionMetadata);
  $this->expectException(\RuntimeException::class);
  $generator->get();
}Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.
