mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
test(Session): Add class docblock for Test\Session\CryptoWrappingTest
Signed-off-by: Josh <josh.t.richards@gmail.com>
This commit is contained in:
parent
5223cc1003
commit
ecf3269e47
1 changed files with 6 additions and 0 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue