5b20695c3df9af97f0f12ab055691ac67899a91e
[yaffs-website] / vendor / phpunit / phpunit / tests / _files / RequirementsTest.php
1 <?php
2 class RequirementsTest extends PHPUnit_Framework_TestCase
3 {
4     public function testOne()
5     {
6     }
7
8     /**
9      * @requires PHPUnit 1.0
10      */
11     public function testTwo()
12     {
13     }
14
15     /**
16      * @requires PHP 2.0
17      */
18     public function testThree()
19     {
20     }
21
22     /**
23      * @requires PHPUnit 2.0
24      * @requires PHP 1.0
25      */
26     public function testFour()
27     {
28     }
29
30     /**
31      * @requires PHP 5.4.0RC6
32      */
33     public function testFive()
34     {
35     }
36
37     /**
38      * @requires PHP 5.4.0-alpha1
39      */
40     public function testSix()
41     {
42     }
43
44     /**
45      * @requires PHP 5.4.0beta2
46      */
47     public function testSeven()
48     {
49     }
50
51     /**
52      * @requires PHP 5.4-dev
53      */
54     public function testEight()
55     {
56     }
57
58     /**
59      * @requires function testFunc
60      */
61     public function testNine()
62     {
63     }
64
65     /**
66      * @requires extension testExt
67      */
68     public function testTen()
69     {
70     }
71
72     /**
73      * @requires OS Linux
74      */
75     public function testEleven()
76     {
77     }
78
79     /**
80      * @requires PHP 99-dev
81      * @requires PHPUnit 9-dev
82      * @requires OS DOESNOTEXIST
83      * @requires function testFuncOne
84      * @requires function testFuncTwo
85      * @requires extension testExtOne
86      * @requires extension testExtTwo
87      */
88     public function testAllPossibleRequirements()
89     {
90     }
91
92     /**
93      * @requires function array_merge
94      */
95     public function testExistingFunction()
96     {
97     }
98
99     /**
100      * @requires function ReflectionMethod::setAccessible
101      */
102     public function testExistingMethod()
103     {
104     }
105
106     /**
107      * @requires extension spl
108      */
109     public function testExistingExtension()
110     {
111     }
112
113     /**
114      * @requires OS .*
115      */
116     public function testExistingOs()
117     {
118     }
119
120     /**
121      * @requires PHPUnit 1111111
122      */
123     public function testAlwaysSkip()
124     {
125     }
126
127     /**
128      * @requires PHP 9999999
129      */
130     public function testAlwaysSkip2()
131     {
132     }
133
134     /**
135      * @requires OS DOESNOTEXIST
136      */
137     public function testAlwaysSkip3()
138     {
139     }
140
141     /**
142      * @requires          extension       spl
143      * @requires          OS      .*
144      */
145     public function testSpace()
146     {
147     }
148 }