diff --git a/core/tests/Drupal/Tests/Core/Session/SessionManagerTest.php b/core/tests/Drupal/Tests/Core/Session/SessionManagerTest.php deleted file mode 100644 index a50867dc22..0000000000 --- a/core/tests/Drupal/Tests/Core/Session/SessionManagerTest.php +++ /dev/null @@ -1,57 +0,0 @@ -createMock(Connection::class); - $session_configuration = $this->createMock(SessionConfigurationInterface::class); - $session_manager = new SessionManager( - new RequestStack(), - $connection, - new MetadataBag(new Settings([])), - $session_configuration, - new FakeAbstractProxy() - ); - - $this->expectDeprecation('Calling Drupal\Core\Session\SessionManager::getId() outside of an actual existing session is deprecated in drupal:9.2.0 and will be removed in drupal:10.0.0. This is often used for anonymous users. See https://www.drupal.org/node/3006306'); - $this->assertNotEmpty($session_manager->getId()); - } - -} - -class FakeAbstractProxy extends AbstractProxy { - - /** - * Stores the fake session ID. - * - * @var string - */ - protected $id = ''; - - public function setId($id) { - $this->id = $id; - } - - public function getId(): string { - return $this->id; - } - -}