27     protected function setUp(): void
    36         $this->assertInstanceOf(ilTestSkillLevelThresholdExporter::class, $this->testObj);
    42         $this->testObj->setXmlWriter($xmlWriter);
    43         $this->assertEquals($xmlWriter, $this->testObj->getXmlWriter());
    48         $mock = $this->createMock(ilAssQuestionSkillAssignmentList::class);
    49         $this->testObj->setAssignmentList($mock);
    50         $this->assertEquals($mock, $this->testObj->getAssignmentList());
    55         $mock = $this->createMock(ilTestSkillLevelThresholdList::class);
    56         $this->testObj->setThresholdList($mock);
    57         $this->assertEquals($mock, $this->testObj->getThresholdList());
 
test_instantiateObject_shouldReturnInstance()
 
ilTestSkillLevelThresholdExporter $testObj
 
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...