ILIAS  release_7 Revision v7.30-3-g800a261c036
All Data Structures Namespaces Files Functions Variables Modules Pages
UIComponentsTest.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (c) 2016 Timon Amstutz <timon.amstutz@ilub.unibe.ch> Extended GPL, see docs/LICENSE */
3 
4 require_once("libs/composer/vendor/autoload.php");
5 include_once("tests/UI/Crawler/Fixture/Fixture.php");
6 
9 
14 {
15 
16 
20  protected $crawler;
21 
25  protected $path_to_base_factory = "src/UI/Factory.php";
26 
27 
28  protected function setUp() : void
29  {
30  $this->crawler = new Crawler\FactoriesCrawler();
31  }
32 
37  {
38  $this->crawler->crawlFactory($this->path_to_base_factory);
42  $this->assertTrue(true);
43  }
44 }
Tests the actual UI components from src/UI.
testAllUIComponentsFactoriesForNotThrowingErrors()