You are here

protected function PrivateKeyTest::setUp in Drupal 8

Same name and namespace in other branches
  1. 9 core/tests/Drupal/Tests/Core/PrivateKeyTest.php \Drupal\Tests\Core\PrivateKeyTest::setUp()
  2. 10 core/tests/Drupal/Tests/Core/PrivateKeyTest.php \Drupal\Tests\Core\PrivateKeyTest::setUp()

Overrides UnitTestCase::setUp

File

core/tests/Drupal/Tests/Core/PrivateKeyTest.php, line 40

Class

PrivateKeyTest
Tests the PrivateKey class.

Namespace

Drupal\Tests\Core

Code

protected function setUp() {
  parent::setUp();
  $this->key = Crypt::randomBytesBase64(55);
  $this->state = $this
    ->createMock('Drupal\\Core\\State\\StateInterface');
  $this->privateKey = new PrivateKey($this->state);
}