ILIAS  trunk Revision v11.0_alpha-2638-g80c1d007f79
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 }