Class ilTestSkillLevelThresholdImporterTest.
More...
◆ setUp()
ilTestSkillLevelThresholdImporterTest::setUp |
( |
| ) |
|
|
protected |
◆ test_instantiateObject_shouldReturnInstance()
ilTestSkillLevelThresholdImporterTest::test_instantiateObject_shouldReturnInstance |
( |
| ) |
|
◆ testFailedThresholdImportSkillList()
ilTestSkillLevelThresholdImporterTest::testFailedThresholdImportSkillList |
( |
| ) |
|
Definition at line 78 of file ilTestSkillLevelThresholdImporterTest.php.
78 : void
79 {
80 $mock = $this->createMock(ilAssQuestionAssignedSkillList::class);
81 $this->testObj->setFailedThresholdImportSkillList($mock);
82 $this->assertEquals($mock, $this->testObj->getFailedThresholdImportSkillList());
83 }
◆ testImportedQuestionSkillAssignmentList()
ilTestSkillLevelThresholdImporterTest::testImportedQuestionSkillAssignmentList |
( |
| ) |
|
Definition at line 64 of file ilTestSkillLevelThresholdImporterTest.php.
64 : void
65 {
66 $mock = $this->createMock(ilAssQuestionSkillAssignmentList::class);
67 $this->testObj->setImportedQuestionSkillAssignmentList($mock);
68 $this->assertEquals($mock, $this->testObj->getImportedQuestionSkillAssignmentList());
69 }
◆ testImportInstallationId()
ilTestSkillLevelThresholdImporterTest::testImportInstallationId |
( |
| ) |
|
Definition at line 50 of file ilTestSkillLevelThresholdImporterTest.php.
50 : void
51 {
52 $importInstallationId = 12;
53 $this->testObj->setImportInstallationId($importInstallationId);
54 $this->assertEquals($importInstallationId, $this->testObj->getImportInstallationId());
55 }
◆ testImportMappingRegistry()
ilTestSkillLevelThresholdImporterTest::testImportMappingRegistry |
( |
| ) |
|
Definition at line 57 of file ilTestSkillLevelThresholdImporterTest.php.
57 : void
58 {
59 $mock = $this->createMock(ilImportMapping::class);
60 $this->testObj->setImportMappingRegistry($mock);
61 $this->assertEquals($mock, $this->testObj->getImportMappingRegistry());
62 }
◆ testImportThresholdList()
ilTestSkillLevelThresholdImporterTest::testImportThresholdList |
( |
| ) |
|
Definition at line 71 of file ilTestSkillLevelThresholdImporterTest.php.
71 : void
72 {
73 $mock = $this->createMock(ilTestSkillLevelThresholdImportList::class);
74 $this->testObj->setImportThresholdList($mock);
75 $this->assertEquals($mock, $this->testObj->getImportThresholdList());
76 }
◆ testTargetTestId()
ilTestSkillLevelThresholdImporterTest::testTargetTestId |
( |
| ) |
|
Definition at line 43 of file ilTestSkillLevelThresholdImporterTest.php.
43 : void
44 {
45 $targetTestId = 12;
46 $this->testObj->setTargetTestId($targetTestId);
47 $this->assertEquals($targetTestId, $this->testObj->getTargetTestId());
48 }
◆ $testObj
The documentation for this class was generated from the following file: