ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
ilTestProcessLockerFactoryTest.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
26 {
28 
29  protected function setUp(): void
30  {
31  parent::setUp();
32 
33  $this->testObj = new ilTestProcessLockerFactory(
34  $this->getMockBuilder(ilSetting::class)->disableOriginalConstructor()->getMock(),
35  $this->createMock(ilDBInterface::class)
36  );
37  }
38 
40  {
41  $this->assertInstanceOf(ilTestProcessLockerFactory::class, $this->testObj);
42  }
43 
44  public function testActiveId(): void
45  {
46  $contextId = 212;
47  $lockerFactory = $this->testObj->withContextId($contextId);
48  $this->assertEquals($contextId, $lockerFactory->getContextId());
49  }
50 }
Class ilTestProcessLockerFactoryTest.