You are here

class SessionManagerDestroyNoCliCheckTest in Drupal 10

Same name and namespace in other branches
  1. 9 core/tests/Drupal/KernelTests/Core/Session/SessionManagerDestroyNoCliCheckTest.php \Drupal\KernelTests\Core\Session\SessionManagerDestroyNoCliCheckTest

Tests starting and destroying a session from the CLI.

@group Session

Hierarchy

Expanded class hierarchy of SessionManagerDestroyNoCliCheckTest

File

core/tests/Drupal/KernelTests/Core/Session/SessionManagerDestroyNoCliCheckTest.php, line 12

Namespace

Drupal\KernelTests\Core\Session
View source
class SessionManagerDestroyNoCliCheckTest extends KernelTestBase {

  /**
   * Tests starting and destroying a session from the CLI.
   */
  public function testCallSessionManagerStartAndDestroy() {
    $this
      ->assertFalse(\Drupal::service('session_manager')
      ->start());
    $this
      ->assertNull(\Drupal::service('session_manager')
      ->destroy());
  }

}

Members