ILIAS  release_10 Revision v10.1-43-ga1241a92c2f
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 }