3 declare(strict_types=1);
29 protected function setUp(): void
38 $this->assertInstanceOf(ilTestObjectiveOrientedContainer::class, $this->testObj);
43 $this->testObj->setObjId(125);
44 $this->assertEquals(125, $this->testObj->getObjId());
49 $this->testObj->setRefId(125);
50 $this->assertEquals(125, $this->testObj->getRefId());
55 $this->assertFalse($this->testObj->isObjectiveOrientedPresentationRequired());
57 $this->testObj->setObjId(1254);
58 $this->assertTrue($this->testObj->isObjectiveOrientedPresentationRequired());
test_instantiateObject_shouldReturnInstance()
ilTestObjectiveOrientedContainer $testObj
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
testIsObjectiveOrientedPresentationRequired()