Class ilObjTestTest.
More...
◆ setUp()
◆ test_instantiateObject_shouldReturnInstance()
ilObjTestTest::test_instantiateObject_shouldReturnInstance |
( |
| ) |
|
Definition at line 44 of file ilObjTestTest.php.
44 : void
45 {
46 $this->assertInstanceOf(ilObjTest::class, $this->testObj);
47 }
◆ testTestId()
ilObjTestTest::testTestId |
( |
| ) |
|
Definition at line 56 of file ilObjTestTest.php.
56 : void
57 {
58 $a_id = 15;
59 $this->testObj->setTestId($a_id);
60 $this->assertEquals($a_id, $this->testObj->getTestId());
61 }
◆ testTmpCopyWizardCopyId()
ilObjTestTest::testTmpCopyWizardCopyId |
( |
| ) |
|
Definition at line 49 of file ilObjTestTest.php.
49 : void
50 {
51 $tmpCopyWizardCopyId = 12;
52 $this->testObj->setTmpCopyWizardCopyId($tmpCopyWizardCopyId);
53 $this->assertEquals($tmpCopyWizardCopyId, $this->testObj->getTmpCopyWizardCopyId());
54 }
◆ $testObj
The documentation for this class was generated from the following file: