From 5223cc1003552c60fdf37f79c7c643987929ab9f Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 25 Jan 2026 10:40:15 -0500 Subject: [PATCH] test(Session): Add class docblock for Test\Session\CryptoSessionDataTest Signed-off-by: Josh --- tests/lib/Session/CryptoSessionDataTest.php | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/lib/Session/CryptoSessionDataTest.php b/tests/lib/Session/CryptoSessionDataTest.php index a30a3297094..f2f3c0c6192 100644 --- a/tests/lib/Session/CryptoSessionDataTest.php +++ b/tests/lib/Session/CryptoSessionDataTest.php @@ -13,6 +13,11 @@ use OC\Session\Memory; use OCP\ISession; use OCP\Security\ICrypto; +/** + * Test case for OC\Session\CryptoSessionData using in-memory session storage. + * Reuses session contract tests but verifies they hold with encrypted storage + * (i.e., session values are encrypted/decrypted transparently). + */ class CryptoSessionDataTest extends Session { /** @var \PHPUnit\Framework\MockObject\MockObject|ICrypto */ protected $crypto;