ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
DataReadmeTest.php
Go to the documentation of this file.
1<?php
2
19declare(strict_types=1);
20
21require_once("vendor/composer/vendor/autoload.php");
22
23use PHPUnit\Framework\TestCase;
24
30class DataReadmeTest extends TestCase
31{
32 public function testReadme(): void
33 {
34 ob_start();
35 require_once("./components/ILIAS/Data/README.md");
36 ob_end_clean();
37 $this->assertTrue(true);
38 }
39}
Testing the faytory of result objects.