ILIAS  release_8 Revision v8.24
ilTestInfoScreenToolbarFactoryTest.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
26{
28
29 protected function setUp(): void
30 {
31 parent::setUp();
32
33 $this->testObj = new ilTestInfoScreenToolbarFactory();
34 }
35
37 {
38 $this->assertInstanceOf(ilTestInfoScreenToolbarFactory::class, $this->testObj);
39 }
40
41 public function testTestRefId(): void
42 {
43 $this->testObj->setTestRefId(125);
44 $this->assertEquals(125, $this->testObj->getTestRefId());
45 }
46
47 public function testTestOBJ(): void
48 {
49 $objTest_mock = $this->createMock(ilObjTest::class);
50 $this->testObj->setTestOBJ($objTest_mock);
51 $this->assertEquals($objTest_mock, $this->testObj->getTestOBJ());
52 }
53}
Class ilTestBaseClass.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...