ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
ilObjTestXMLParserTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
26 {
28 
29  protected function setUp(): void
30  {
31  parent::setUp();
32 
33  $this->testObj = new ilObjTestXMLParser();
34  }
35 
37  {
38  $this->assertInstanceOf(ilObjTestXMLParser::class, $this->testObj);
39  }
40 
41  public function testTestOBJ(): void
42  {
43  $objTest_mock = $this->createMock(ilObjTest::class);
44  $this->assertNull($this->testObj->getTestOBJ());
45 
46  $this->testObj->setTestOBJ($objTest_mock);
47  $this->assertEquals($objTest_mock, $this->testObj->getTestOBJ());
48  }
49 
50  public function testImportMapping(): void
51  {
52  $importMapping_mock = $this->createMock(ilImportMapping::class);
53  $this->assertNull($this->testObj->getImportMapping());
54 
55  $this->testObj->setImportMapping($importMapping_mock);
56  $this->assertEquals($importMapping_mock, $this->testObj->getImportMapping());
57  }
58 }
Class ilTestBaseClass.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...