You are here

public function SessionStoreTest::testGetSessionKey in Auth0 Single Sign On 8.2

Test that SessionStore::getSessionKeyName returns the expected name.

Return value

void

File

vendor/auth0/auth0-php/tests/Store/SessionStoreTest.php, line 75

Class

SessionStoreTest
Class SessionStoreTest. Tests the SessionStore class.

Code

public function testGetSessionKey() {
  $test_this_key_name = self::$sessionStore
    ->getSessionKeyName(self::TEST_KEY);
  $this
    ->assertEquals(self::$sessionKey, $test_this_key_name);
}