19declare(strict_types=1);
23use PHPUnit\Framework\TestCase;
32 $domain = $this->getMockBuilder(InternalDomainService::class)->disableOriginalConstructor()->getMock();
33 $repo = $this->getMockBuilder(InternalRepoServiceInterface::class)->disableOriginalConstructor()->getMock();
42 $this->domain = $domain_service;
43 $this->glo_id = $glo_ref_id;
53 $terms = [123, 456, 789];
55 $manager->setSessionInitialTerms(55, $terms);
57 $this->assertSame($terms, $manager->getSessionInitialTerms(55));
63 $terms = [321, 654, 987];
65 $manager->setSessionTerms(77, $terms);
67 $this->assertSame($terms, $manager->getSessionTerms(77));
testSetSessionInitialTerms()
__construct()
Constructor setup ILIAS global object @access public.