3 declare(strict_types=1);
29 protected function setUp(): void
38 $this->assertInstanceOf(ilTestInfoScreenToolbarFactory::class, $this->testObj);
43 $this->testObj->setTestRefId(125);
44 $this->assertEquals(125, $this->testObj->getTestRefId());
49 $objTest_mock = $this->createMock(ilObjTest::class);
50 $this->testObj->setTestOBJ($objTest_mock);
51 $this->assertEquals($objTest_mock, $this->testObj->getTestOBJ());