From ecf3269e47deb04741b6263feb813b5f4893eac7 Mon Sep 17 00:00:00 2001 From: Josh Date: Sun, 25 Jan 2026 11:43:06 -0500 Subject: [PATCH] test(Session): Add class docblock for Test\Session\CryptoWrappingTest Signed-off-by: Josh --- tests/lib/Session/CryptoWrappingTest.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tests/lib/Session/CryptoWrappingTest.php b/tests/lib/Session/CryptoWrappingTest.php index 2bc09e0903a..b466b5647c0 100644 --- a/tests/lib/Session/CryptoWrappingTest.php +++ b/tests/lib/Session/CryptoWrappingTest.php @@ -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;