3 declare(strict_types=1);
29 protected function setUp(): void
38 $this->assertInstanceOf(ilTestSkillLevelThresholdImporter::class, $this->testObj);
43 $this->testObj->setTargetTestId(12);
44 $this->assertEquals(12, $this->testObj->getTargetTestId());
49 $this->testObj->setImportInstallationId(12);
50 $this->assertEquals(12, $this->testObj->getImportInstallationId());
55 $mock = $this->createMock(ilImportMapping::class);
56 $this->testObj->setImportMappingRegistry($mock);
57 $this->assertEquals($mock, $this->testObj->getImportMappingRegistry());
62 $mock = $this->createMock(ilAssQuestionSkillAssignmentList::class);
63 $this->testObj->setImportedQuestionSkillAssignmentList($mock);
64 $this->assertEquals($mock, $this->testObj->getImportedQuestionSkillAssignmentList());
69 $mock = $this->createMock(ilTestSkillLevelThresholdImportList::class);
70 $this->testObj->setImportThresholdList($mock);
71 $this->assertEquals($mock, $this->testObj->getImportThresholdList());
76 $mock = $this->createMock(ilAssQuestionAssignedSkillList::class);
77 $this->testObj->setFailedThresholdImportSkillList($mock);
78 $this->assertEquals($mock, $this->testObj->getFailedThresholdImportSkillList());
ilTestSkillLevelThresholdImporter $testObj
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
test_instantiateObject_shouldReturnInstance()
testImportMappingRegistry()
testImportThresholdList()
testImportInstallationId()
testImportedQuestionSkillAssignmentList()
testFailedThresholdImportSkillList()