test(Session): Add class docblock for Test\Session\CryptoSessionDataTest

Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
Josh 2026-01-25 10:40:15 -05:00 committed by GitHub
parent 028fbb29b2
commit 5223cc1003
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;