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

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

View file

@ -13,6 +13,12 @@ use OCP\ISession;
use OCP\Security\ICrypto;
use Test\TestCase;
/**
* Test cases for the internal logic of OC\Session\CryptoSessionData.
* Focuses on correct encryption/decryption of session data and wrapping behavior.
*
* TODO: Should really be testing CryptoWrapper!
*/
class CryptoWrappingTest extends TestCase {
/** @var \PHPUnit\Framework\MockObject\MockObject|ICrypto */
protected $crypto;