Update caching library to latest version, updated and fixed phpUnit tests

This commit is contained in:
2026-02-18 15:16:34 +00:00
parent b127c3cba8
commit f937f2b426
16 changed files with 1210 additions and 738 deletions

View File

@@ -8,11 +8,11 @@ namespace CloudObjects\SDK\AccountGateway;
use ML\IRI\IRI;
class AccountContextTest extends \PHPUnit_Framework_TestCase {
class AccountContextTest extends \PHPUnit\Framework\TestCase {
private $context;
protected function setUp() {
protected function setUp(): void {
$this->context = new AccountContext(new IRI('aauid:aaaabbbbccccdddd'), 'DUMMY');
}