ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
BasicObserverTestTBD.php
Go to the documentation of this file.
1 <?php
2 
27 
33 
34 require_once("vendor/composer/vendor/autoload.php");
35 
36 class BasicObserverTest extends MockeryTestCase
37 {
38  public function testCheckIntegrity(): void
39  {
40  $this->expectException(Exception::class);
41 
42  $observer = new BasicBucket();
43  $observer->setTask(new DownloadInteger());
44  BasicPersistence::instance($this->createMock(\ilDBInterface::class))->saveBucketAndItsTasks($observer);
45  }
46 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...