ILIAS  release_8 Revision v8.19
All Data Structures Namespaces Files Functions Variables Modules Pages
DataReadmeTest.php
Go to the documentation of this file.
1 <?php
2 
3 declare(strict_types=1);
4 
5 /* Copyright (c) 2017 Stefan Hecken <stefan.hecken@concepts-and-training.de> Extended GPL, see docs/LICENSE */
6 
7 require_once("libs/composer/vendor/autoload.php");
8 
10 
16 class DataReadmeTest extends TestCase
17 {
18  public function testReadme(): void
19  {
20  ob_start();
21  require_once(__DIR__ . "/../../src/Data/README.md");
22  ob_end_clean();
23  $this->assertTrue(true);
24  }
25 }
Testing the faytory of result objects.