ILIAS  trunk Revision v12.0_alpha-377-g3641b37b9db
TestManScoringDoneHelperTest.php
Go to the documentation of this file.
1<?php
2
20
22{
23 public function testConstruct(): void
24 {
25 $testManScoringDoneHelper = new TestManScoringDoneHelper();
26 $this->assertInstanceOf(TestManScoringDoneHelper::class, $testManScoringDoneHelper);
27
28 $testManScoringDoneHelper = new TestManScoringDoneHelper($this->createMock(ilDBInterface::class));
29 $this->assertInstanceOf(TestManScoringDoneHelper::class, $testManScoringDoneHelper);
30 }
31}
Class ilTestBaseClass.