ILIAS  release_5-2 Revision v5.2.25-18-g3f80b828510
Fixture.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
5{
6 public $properEntryYamlArray = array(
7 array(
8 "description" => array(
9 "purpose" => "Description of Purpose",
10 "composition" => "Description of Composition with line break",
11 "effect" => "Effect Description on one line",
12 "rivals" => array(
13 "icon" => "Icon Description"
14 )
15
16 ),
17 "background"=>"\"Some wild background with quotes\" and links <a href='http:test'>test</a>",
18 "featurewiki"=> array("http://www.ilias.de/docu/goto_docu_wiki_wpage_3208_1357.html"),
19 "rules"=>array(
20 "usage"=>array(
21 1 => "Usage Rule 1",
22 2 => "Usage Rule 2",
23 3 => "Usage Rule 3 multi line"
24 ),
25 "style"=>array(
26 4 => "Style Rule"
27 )
28 ),
29 "namespace"=>"\\ILIAS\\UI\\Crawler\\Fixture\\ProperEntry",
30 "function_name"=>"properEntry"
31
32 )
33 );
34
36"description:
37 purpose: >
38 Description of Purpose
39 composition: >
40 Description of Composition
41 with line break
42 effect: Effect Description on one line
43 rivals:
44 icon: >
45 Icon Description
46background: >
47 \"Some wild background with quotes\"
48 and links <a href='http:test'>test</a>
49featurewiki:
50 - http://www.ilias.de/docu/goto_docu_wiki_wpage_3208_1357.html
51rules:
52 usage:
53 1: Usage Rule 1
54 2: Usage Rule 2
55 3: >
56 Usage Rule 3 multi line
57 style:
58 4: Style Rule
59namespace: \\ILIAS\\UI\\Crawler\\Fixture\\ProperEntry
60function_name: properEntry";
61
62
63}
64
65
An exception for terminatinating execution or to throw for unit testing.