ILIAS  release_5-3 Revision v5.3.23-19-g915713cf615
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
4require_once("libs/composer/vendor/autoload.php");
5include_once("tests/UI/Crawler/Fixture/Fixture.php");
6
8
13{
14
15
19 protected $crawler;
20
24 protected $path_to_base_factory = "src/UI/Factory.php";
25
26
27 protected function setUp()
28 {
29 $this->crawler = new Crawler\FactoriesCrawler();
30 }
31
36 {
37 $this->crawler->crawlFactory($this->path_to_base_factory);
41 $this->assertTrue(true);
42 }
43}
An exception for terminatinating execution or to throw for unit testing.
Tests the actual UI components from src/UI.
testAllUIComponentsFactoriesForNotThrowingErrors()