19 declare(strict_types=1);
30 protected function setUp(): void
34 $this->addGlobal_ilErr();
35 $this->addGlobal_ilLog();
36 $this->addGlobal_ilSetting();
37 $this->addGlobal_ilAppEventHandler();
38 $this->addGlobal_filesystem();
39 $this->addGlobal_ilComponentFactory();
46 $this->assertInstanceOf(ilObjTest::class, $this->testObj);
51 $tmpCopyWizardCopyId = 12;
52 $this->testObj->setTmpCopyWizardCopyId($tmpCopyWizardCopyId);
53 $this->assertEquals($tmpCopyWizardCopyId, $this->testObj->getTmpCopyWizardCopyId());
59 $this->testObj->setTestId($a_id);
60 $this->assertEquals($a_id, $this->testObj->getTestId());
test_instantiateObject_shouldReturnInstance()
testTmpCopyWizardCopyId()