3declare(strict_types=1);
 
   29    protected function setUp(): void
 
   38        $this->assertInstanceOf(ilTestSkillLevelThresholdExporter::class, $this->testObj);
 
   44        $this->testObj->setXmlWriter($xmlWriter);
 
   45        $this->assertEquals($xmlWriter, $this->testObj->getXmlWriter());
 
   50        $mock = $this->createMock(ilAssQuestionSkillAssignmentList::class);
 
   51        $this->testObj->setAssignmentList($mock);
 
   52        $this->assertEquals($mock, $this->testObj->getAssignmentList());
 
   57        $mock = $this->createMock(ilTestSkillLevelThresholdList::class);
 
   58        $this->testObj->setThresholdList($mock);
 
   59        $this->assertEquals($mock, $this->testObj->getThresholdList());
 
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
 
ilTestSkillLevelThresholdExporter $testObj
 
test_instantiateObject_shouldReturnInstance()
 
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...