19 declare(strict_types=1);
    29     protected function setUp(): void
    34             $this->createMock(ilDBInterface::class)
    40         $this->assertInstanceOf(ilTestSkillLevelThresholdImporter::class, $this->testObj);
    46         $this->testObj->setTargetTestId($targetTestId);
    47         $this->assertEquals($targetTestId, $this->testObj->getTargetTestId());
    52         $importInstallationId = 12;
    53         $this->testObj->setImportInstallationId($importInstallationId);
    54         $this->assertEquals($importInstallationId, $this->testObj->getImportInstallationId());
    59         $mock = $this->createMock(ilImportMapping::class);
    60         $this->testObj->setImportMappingRegistry($mock);
    61         $this->assertEquals($mock, $this->testObj->getImportMappingRegistry());
    66         $mock = $this->createMock(ilAssQuestionSkillAssignmentList::class);
    67         $this->testObj->setImportedQuestionSkillAssignmentList($mock);
    68         $this->assertEquals($mock, $this->testObj->getImportedQuestionSkillAssignmentList());
    73         $mock = $this->createMock(ilTestSkillLevelThresholdImportList::class);
    74         $this->testObj->setImportThresholdList($mock);
    75         $this->assertEquals($mock, $this->testObj->getImportThresholdList());
    80         $mock = $this->createMock(ilAssQuestionAssignedSkillList::class);
    81         $this->testObj->setFailedThresholdImportSkillList($mock);
    82         $this->assertEquals($mock, $this->testObj->getFailedThresholdImportSkillList());
 ilTestSkillLevelThresholdImporter $testObj
 
Class ilTestSkillLevelThresholdImporterTest. 
 
test_instantiateObject_shouldReturnInstance()
 
testImportMappingRegistry()
 
testImportThresholdList()
 
testImportInstallationId()
 
testImportedQuestionSkillAssignmentList()
 
testFailedThresholdImportSkillList()