ILIAS  release_8 Revision v8.24
DataReadmeTest.php
Go to the documentation of this file.
1<?php
2
3declare(strict_types=1);
4
5/* Copyright (c) 2017 Stefan Hecken <stefan.hecken@concepts-and-training.de> Extended GPL, see docs/LICENSE */
6
7require_once("libs/composer/vendor/autoload.php");
8
9use PHPUnit\Framework\TestCase;
10
16class 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.