Completed
Push — master ( 52755b...6c4366 )
by smiley
02:13
created
vendor/phpunit/phpunit/tests/_files/ExceptionInAssertPreConditionsTest.php 1 patch
Indentation   +26 added lines, -26 removed lines patch added patch discarded remove patch
@@ -3,35 +3,35 @@
 block discarded – undo
3 3
 
4 4
 class ExceptionInAssertPreConditionsTest extends TestCase
5 5
 {
6
-    public $setUp                = false;
7
-    public $assertPreConditions  = false;
8
-    public $assertPostConditions = false;
9
-    public $tearDown             = false;
10
-    public $testSomething        = false;
6
+	public $setUp                = false;
7
+	public $assertPreConditions  = false;
8
+	public $assertPostConditions = false;
9
+	public $tearDown             = false;
10
+	public $testSomething        = false;
11 11
 
12
-    protected function setUp()
13
-    {
14
-        $this->setUp = true;
15
-    }
12
+	protected function setUp()
13
+	{
14
+		$this->setUp = true;
15
+	}
16 16
 
17
-    protected function assertPreConditions()
18
-    {
19
-        $this->assertPreConditions = true;
20
-        throw new Exception;
21
-    }
17
+	protected function assertPreConditions()
18
+	{
19
+		$this->assertPreConditions = true;
20
+		throw new Exception;
21
+	}
22 22
 
23
-    public function testSomething()
24
-    {
25
-        $this->testSomething = true;
26
-    }
23
+	public function testSomething()
24
+	{
25
+		$this->testSomething = true;
26
+	}
27 27
 
28
-    protected function assertPostConditions()
29
-    {
30
-        $this->assertPostConditions = true;
31
-    }
28
+	protected function assertPostConditions()
29
+	{
30
+		$this->assertPostConditions = true;
31
+	}
32 32
 
33
-    protected function tearDown()
34
-    {
35
-        $this->tearDown = true;
36
-    }
33
+	protected function tearDown()
34
+	{
35
+		$this->tearDown = true;
36
+	}
37 37
 }
Please login to merge, or discard this patch.
vendor/phpunit/phpunit/tests/_files/NamespaceCoverageClassExtendedTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 
4 4
 class NamespaceCoverageClassExtendedTest extends TestCase
5 5
 {
6
-    /**
7
-     * @covers Foo\CoveredClass<extended>
8
-     */
9
-    public function testSomething()
10
-    {
11
-        $o = new Foo\CoveredClass;
12
-        $o->publicMethod();
13
-    }
6
+	/**
7
+	 * @covers Foo\CoveredClass<extended>
8
+	 */
9
+	public function testSomething()
10
+	{
11
+		$o = new Foo\CoveredClass;
12
+		$o->publicMethod();
13
+	}
14 14
 }
Please login to merge, or discard this patch.
vendor/phpunit/phpunit/tests/_files/NamespaceCoveredFunction.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -3,5 +3,5 @@
 block discarded – undo
3 3
 
4 4
 function func()
5 5
 {
6
-    return true;
6
+	return true;
7 7
 }
Please login to merge, or discard this patch.
vendor/phpunit/phpunit/tests/_files/IgnoreCodeCoverageClassTest.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -3,15 +3,15 @@
 block discarded – undo
3 3
 
4 4
 class IgnoreCodeCoverageClassTest extends TestCase
5 5
 {
6
-    public function testReturnTrue()
7
-    {
8
-        $sut = new IgnoreCodeCoverageClass();
9
-        $this->assertTrue($sut->returnTrue());
10
-    }
6
+	public function testReturnTrue()
7
+	{
8
+		$sut = new IgnoreCodeCoverageClass();
9
+		$this->assertTrue($sut->returnTrue());
10
+	}
11 11
 
12
-    public function testReturnFalse()
13
-    {
14
-        $sut = new IgnoreCodeCoverageClass();
15
-        $this->assertFalse($sut->returnFalse());
16
-    }
12
+	public function testReturnFalse()
13
+	{
14
+		$sut = new IgnoreCodeCoverageClass();
15
+		$this->assertFalse($sut->returnFalse());
16
+	}
17 17
 }
Please login to merge, or discard this patch.
vendor/phpunit/phpunit/tests/_files/RequirementsTest.php 1 patch
Indentation   +433 added lines, -433 removed lines patch added patch discarded remove patch
@@ -11,437 +11,437 @@
 block discarded – undo
11 11
 
12 12
 class RequirementsTest extends TestCase
13 13
 {
14
-    public function testOne()
15
-    {
16
-    }
17
-
18
-    /**
19
-     * @requires PHPUnit 1.0
20
-     */
21
-    public function testTwo()
22
-    {
23
-    }
24
-
25
-    /**
26
-     * @requires PHP 2.0
27
-     */
28
-    public function testThree()
29
-    {
30
-    }
31
-
32
-    /**
33
-     * @requires PHPUnit 2.0
34
-     * @requires PHP 1.0
35
-     */
36
-    public function testFour()
37
-    {
38
-    }
39
-
40
-    /**
41
-     * @requires PHP 5.4.0RC6
42
-     */
43
-    public function testFive()
44
-    {
45
-    }
46
-
47
-    /**
48
-     * @requires PHP 5.4.0-alpha1
49
-     */
50
-    public function testSix()
51
-    {
52
-    }
53
-
54
-    /**
55
-     * @requires PHP 5.4.0beta2
56
-     */
57
-    public function testSeven()
58
-    {
59
-    }
60
-
61
-    /**
62
-     * @requires PHP 5.4-dev
63
-     */
64
-    public function testEight()
65
-    {
66
-    }
67
-
68
-    /**
69
-     * @requires function testFunc
70
-     */
71
-    public function testNine()
72
-    {
73
-    }
74
-
75
-    /**
76
-     * @requires extension testExt
77
-     */
78
-    public function testTen()
79
-    {
80
-    }
81
-
82
-    /**
83
-     * @requires OS SunOS
84
-     * @requires OSFAMILY Solaris
85
-     */
86
-    public function testEleven()
87
-    {
88
-    }
89
-
90
-    /**
91
-     * @requires PHP 99-dev
92
-     * @requires PHPUnit 9-dev
93
-     * @requires OS DOESNOTEXIST
94
-     * @requires function testFuncOne
95
-     * @requires function testFuncTwo
96
-     * @requires extension testExtOne
97
-     * @requires extension testExtTwo
98
-     * @requires extension testExtThree 2.0
99
-     */
100
-    public function testAllPossibleRequirements()
101
-    {
102
-    }
103
-
104
-    /**
105
-     * @requires function array_merge
106
-     */
107
-    public function testExistingFunction()
108
-    {
109
-    }
110
-
111
-    /**
112
-     * @requires function ReflectionMethod::setAccessible
113
-     */
114
-    public function testExistingMethod()
115
-    {
116
-    }
117
-
118
-    /**
119
-     * @requires extension spl
120
-     */
121
-    public function testExistingExtension()
122
-    {
123
-    }
124
-
125
-    /**
126
-     * @requires OS .*
127
-     */
128
-    public function testExistingOs()
129
-    {
130
-    }
131
-
132
-    /**
133
-     * @requires PHPUnit 1111111
134
-     */
135
-    public function testAlwaysSkip()
136
-    {
137
-    }
138
-
139
-    /**
140
-     * @requires PHP 9999999
141
-     */
142
-    public function testAlwaysSkip2()
143
-    {
144
-    }
145
-
146
-    /**
147
-     * @requires OS DOESNOTEXIST
148
-     */
149
-    public function testAlwaysSkip3()
150
-    {
151
-    }
152
-
153
-    /**
154
-     * @requires OSFAMILY DOESNOTEXIST
155
-     */
156
-    public function testAlwaysSkip4()
157
-    {
158
-    }
159
-
160
-    /**
161
-     * @requires extension spl
162
-     * @requires OS .*
163
-     */
164
-    public function testSpace()
165
-    {
166
-    }
167
-
168
-    /**
169
-     * @requires extension testExt 1.8.0
170
-     */
171
-    public function testSpecificExtensionVersion()
172
-    {
173
-    }
174
-
175
-    /**
176
-     * @requires PHP < 5.4
177
-     */
178
-    public function testPHPVersionOperatorLessThan()
179
-    {
180
-    }
181
-
182
-    /**
183
-     * @requires PHP <= 5.4
184
-     */
185
-    public function testPHPVersionOperatorLessThanEquals()
186
-    {
187
-    }
188
-
189
-    /**
190
-     * @requires PHP > 99
191
-     */
192
-    public function testPHPVersionOperatorGreaterThan()
193
-    {
194
-    }
195
-
196
-    /**
197
-     * @requires PHP >= 99
198
-     */
199
-    public function testPHPVersionOperatorGreaterThanEquals()
200
-    {
201
-    }
202
-
203
-    /**
204
-     * @requires PHP = 5.4
205
-     */
206
-    public function testPHPVersionOperatorEquals()
207
-    {
208
-    }
209
-
210
-    /**
211
-     * @requires PHP == 5.4
212
-     */
213
-    public function testPHPVersionOperatorDoubleEquals()
214
-    {
215
-    }
216
-
217
-    /**
218
-     * @requires PHP != 99
219
-     */
220
-    public function testPHPVersionOperatorBangEquals()
221
-    {
222
-    }
223
-
224
-    /**
225
-     * @requires PHP <> 99
226
-     */
227
-    public function testPHPVersionOperatorNotEquals()
228
-    {
229
-    }
230
-
231
-    /**
232
-     * @requires PHP >=99
233
-     */
234
-    public function testPHPVersionOperatorNoSpace()
235
-    {
236
-    }
237
-
238
-    /**
239
-     * @requires PHPUnit < 1.0
240
-     */
241
-    public function testPHPUnitVersionOperatorLessThan()
242
-    {
243
-    }
244
-
245
-    /**
246
-     * @requires PHPUnit <= 1.0
247
-     */
248
-    public function testPHPUnitVersionOperatorLessThanEquals()
249
-    {
250
-    }
251
-
252
-    /**
253
-     * @requires PHPUnit > 99
254
-     */
255
-    public function testPHPUnitVersionOperatorGreaterThan()
256
-    {
257
-    }
258
-
259
-    /**
260
-     * @requires PHPUnit >= 99
261
-     */
262
-    public function testPHPUnitVersionOperatorGreaterThanEquals()
263
-    {
264
-    }
265
-
266
-    /**
267
-     * @requires PHPUnit = 1.0
268
-     */
269
-    public function testPHPUnitVersionOperatorEquals()
270
-    {
271
-    }
272
-
273
-    /**
274
-     * @requires PHPUnit == 1.0
275
-     */
276
-    public function testPHPUnitVersionOperatorDoubleEquals()
277
-    {
278
-    }
279
-
280
-    /**
281
-     * @requires PHPUnit != 99
282
-     */
283
-    public function testPHPUnitVersionOperatorBangEquals()
284
-    {
285
-    }
286
-
287
-    /**
288
-     * @requires PHPUnit <> 99
289
-     */
290
-    public function testPHPUnitVersionOperatorNotEquals()
291
-    {
292
-    }
293
-
294
-    /**
295
-     * @requires PHPUnit >=99
296
-     */
297
-    public function testPHPUnitVersionOperatorNoSpace()
298
-    {
299
-    }
300
-
301
-    /**
302
-     * @requires extension testExtOne < 1.0
303
-     */
304
-    public function testExtensionVersionOperatorLessThan()
305
-    {
306
-    }
307
-
308
-    /**
309
-     * @requires extension testExtOne <= 1.0
310
-     */
311
-    public function testExtensionVersionOperatorLessThanEquals()
312
-    {
313
-    }
314
-
315
-    /**
316
-     * @requires extension testExtOne > 99
317
-     */
318
-    public function testExtensionVersionOperatorGreaterThan()
319
-    {
320
-    }
321
-
322
-    /**
323
-     * @requires extension testExtOne >= 99
324
-     */
325
-    public function testExtensionVersionOperatorGreaterThanEquals()
326
-    {
327
-    }
328
-
329
-    /**
330
-     * @requires extension testExtOne = 1.0
331
-     */
332
-    public function testExtensionVersionOperatorEquals()
333
-    {
334
-    }
335
-
336
-    /**
337
-     * @requires extension testExtOne == 1.0
338
-     */
339
-    public function testExtensionVersionOperatorDoubleEquals()
340
-    {
341
-    }
342
-
343
-    /**
344
-     * @requires extension testExtOne != 99
345
-     */
346
-    public function testExtensionVersionOperatorBangEquals()
347
-    {
348
-    }
349
-
350
-    /**
351
-     * @requires extension testExtOne <> 99
352
-     */
353
-    public function testExtensionVersionOperatorNotEquals()
354
-    {
355
-    }
356
-
357
-    /**
358
-     * @requires extension testExtOne >=99
359
-     */
360
-    public function testExtensionVersionOperatorNoSpace()
361
-    {
362
-    }
363
-
364
-    /**
365
-     * @requires PHP ~1.0
366
-     * @requires PHPUnit ~2.0
367
-     */
368
-    public function testVersionConstraintTildeMajor()
369
-    {
370
-    }
371
-
372
-    /**
373
-     * @requires PHP ^1.0
374
-     * @requires PHPUnit ^2.0
375
-     */
376
-    public function testVersionConstraintCaretMajor()
377
-    {
378
-    }
379
-
380
-    /**
381
-     * @requires PHP ~3.4.7
382
-     * @requires PHPUnit ~4.7.1
383
-     */
384
-    public function testVersionConstraintTildeMinor()
385
-    {
386
-    }
387
-
388
-    /**
389
-     * @requires PHP ^7.0.17
390
-     * @requires PHPUnit ^4.7.1
391
-     */
392
-    public function testVersionConstraintCaretMinor()
393
-    {
394
-    }
395
-
396
-    /**
397
-     * @requires PHP ^5.6 || ^7.0
398
-     * @requires PHPUnit ^5.0 || ^6.0
399
-     */
400
-    public function testVersionConstraintCaretOr()
401
-    {
402
-    }
403
-
404
-    /**
405
-     * @requires PHP ~5.6.22 || ~7.0.17
406
-     * @requires PHPUnit ^5.0.5 || ^6.0.6
407
-     */
408
-    public function testVersionConstraintTildeOr()
409
-    {
410
-    }
411
-
412
-    /**
413
-     * @requires PHP ~5.6.22 || ^7.0
414
-     * @requires PHPUnit ~5.6.22 || ^7.0
415
-     */
416
-    public function testVersionConstraintTildeOrCaret()
417
-    {
418
-    }
419
-    /**
420
-     * @requires PHP ^5.6 || ~7.0.17
421
-     * @requires PHPUnit ^5.6 || ~7.0.17
422
-     */
423
-    public function testVersionConstraintCaretOrTilde()
424
-    {
425
-    }
426
-
427
-    /**
428
-     * @requires   PHP        ~5.6.22 || ~7.0.17
429
-     * @requires   PHPUnit    ~5.6.22 || ~7.0.17
430
-     */
431
-    public function testVersionConstraintRegexpIgnoresWhitespace()
432
-    {
433
-    }
434
-
435
-    /**
436
-     * @requires   PHP ~^12345
437
-     */
438
-    public function testVersionConstraintInvalidPhpConstraint()
439
-    {
440
-    }
441
-    /**
442
-     * @requires   PHPUnit ~^12345
443
-     */
444
-    public function testVersionConstraintInvalidPhpUnitConstraint()
445
-    {
446
-    }
14
+	public function testOne()
15
+	{
16
+	}
17
+
18
+	/**
19
+	 * @requires PHPUnit 1.0
20
+	 */
21
+	public function testTwo()
22
+	{
23
+	}
24
+
25
+	/**
26
+	 * @requires PHP 2.0
27
+	 */
28
+	public function testThree()
29
+	{
30
+	}
31
+
32
+	/**
33
+	 * @requires PHPUnit 2.0
34
+	 * @requires PHP 1.0
35
+	 */
36
+	public function testFour()
37
+	{
38
+	}
39
+
40
+	/**
41
+	 * @requires PHP 5.4.0RC6
42
+	 */
43
+	public function testFive()
44
+	{
45
+	}
46
+
47
+	/**
48
+	 * @requires PHP 5.4.0-alpha1
49
+	 */
50
+	public function testSix()
51
+	{
52
+	}
53
+
54
+	/**
55
+	 * @requires PHP 5.4.0beta2
56
+	 */
57
+	public function testSeven()
58
+	{
59
+	}
60
+
61
+	/**
62
+	 * @requires PHP 5.4-dev
63
+	 */
64
+	public function testEight()
65
+	{
66
+	}
67
+
68
+	/**
69
+	 * @requires function testFunc
70
+	 */
71
+	public function testNine()
72
+	{
73
+	}
74
+
75
+	/**
76
+	 * @requires extension testExt
77
+	 */
78
+	public function testTen()
79
+	{
80
+	}
81
+
82
+	/**
83
+	 * @requires OS SunOS
84
+	 * @requires OSFAMILY Solaris
85
+	 */
86
+	public function testEleven()
87
+	{
88
+	}
89
+
90
+	/**
91
+	 * @requires PHP 99-dev
92
+	 * @requires PHPUnit 9-dev
93
+	 * @requires OS DOESNOTEXIST
94
+	 * @requires function testFuncOne
95
+	 * @requires function testFuncTwo
96
+	 * @requires extension testExtOne
97
+	 * @requires extension testExtTwo
98
+	 * @requires extension testExtThree 2.0
99
+	 */
100
+	public function testAllPossibleRequirements()
101
+	{
102
+	}
103
+
104
+	/**
105
+	 * @requires function array_merge
106
+	 */
107
+	public function testExistingFunction()
108
+	{
109
+	}
110
+
111
+	/**
112
+	 * @requires function ReflectionMethod::setAccessible
113
+	 */
114
+	public function testExistingMethod()
115
+	{
116
+	}
117
+
118
+	/**
119
+	 * @requires extension spl
120
+	 */
121
+	public function testExistingExtension()
122
+	{
123
+	}
124
+
125
+	/**
126
+	 * @requires OS .*
127
+	 */
128
+	public function testExistingOs()
129
+	{
130
+	}
131
+
132
+	/**
133
+	 * @requires PHPUnit 1111111
134
+	 */
135
+	public function testAlwaysSkip()
136
+	{
137
+	}
138
+
139
+	/**
140
+	 * @requires PHP 9999999
141
+	 */
142
+	public function testAlwaysSkip2()
143
+	{
144
+	}
145
+
146
+	/**
147
+	 * @requires OS DOESNOTEXIST
148
+	 */
149
+	public function testAlwaysSkip3()
150
+	{
151
+	}
152
+
153
+	/**
154
+	 * @requires OSFAMILY DOESNOTEXIST
155
+	 */
156
+	public function testAlwaysSkip4()
157
+	{
158
+	}
159
+
160
+	/**
161
+	 * @requires extension spl
162
+	 * @requires OS .*
163
+	 */
164
+	public function testSpace()
165
+	{
166
+	}
167
+
168
+	/**
169
+	 * @requires extension testExt 1.8.0
170
+	 */
171
+	public function testSpecificExtensionVersion()
172
+	{
173
+	}
174
+
175
+	/**
176
+	 * @requires PHP < 5.4
177
+	 */
178
+	public function testPHPVersionOperatorLessThan()
179
+	{
180
+	}
181
+
182
+	/**
183
+	 * @requires PHP <= 5.4
184
+	 */
185
+	public function testPHPVersionOperatorLessThanEquals()
186
+	{
187
+	}
188
+
189
+	/**
190
+	 * @requires PHP > 99
191
+	 */
192
+	public function testPHPVersionOperatorGreaterThan()
193
+	{
194
+	}
195
+
196
+	/**
197
+	 * @requires PHP >= 99
198
+	 */
199
+	public function testPHPVersionOperatorGreaterThanEquals()
200
+	{
201
+	}
202
+
203
+	/**
204
+	 * @requires PHP = 5.4
205
+	 */
206
+	public function testPHPVersionOperatorEquals()
207
+	{
208
+	}
209
+
210
+	/**
211
+	 * @requires PHP == 5.4
212
+	 */
213
+	public function testPHPVersionOperatorDoubleEquals()
214
+	{
215
+	}
216
+
217
+	/**
218
+	 * @requires PHP != 99
219
+	 */
220
+	public function testPHPVersionOperatorBangEquals()
221
+	{
222
+	}
223
+
224
+	/**
225
+	 * @requires PHP <> 99
226
+	 */
227
+	public function testPHPVersionOperatorNotEquals()
228
+	{
229
+	}
230
+
231
+	/**
232
+	 * @requires PHP >=99
233
+	 */
234
+	public function testPHPVersionOperatorNoSpace()
235
+	{
236
+	}
237
+
238
+	/**
239
+	 * @requires PHPUnit < 1.0
240
+	 */
241
+	public function testPHPUnitVersionOperatorLessThan()
242
+	{
243
+	}
244
+
245
+	/**
246
+	 * @requires PHPUnit <= 1.0
247
+	 */
248
+	public function testPHPUnitVersionOperatorLessThanEquals()
249
+	{
250
+	}
251
+
252
+	/**
253
+	 * @requires PHPUnit > 99
254
+	 */
255
+	public function testPHPUnitVersionOperatorGreaterThan()
256
+	{
257
+	}
258
+
259
+	/**
260
+	 * @requires PHPUnit >= 99
261
+	 */
262
+	public function testPHPUnitVersionOperatorGreaterThanEquals()
263
+	{
264
+	}
265
+
266
+	/**
267
+	 * @requires PHPUnit = 1.0
268
+	 */
269
+	public function testPHPUnitVersionOperatorEquals()
270
+	{
271
+	}
272
+
273
+	/**
274
+	 * @requires PHPUnit == 1.0
275
+	 */
276
+	public function testPHPUnitVersionOperatorDoubleEquals()
277
+	{
278
+	}
279
+
280
+	/**
281
+	 * @requires PHPUnit != 99
282
+	 */
283
+	public function testPHPUnitVersionOperatorBangEquals()
284
+	{
285
+	}
286
+
287
+	/**
288
+	 * @requires PHPUnit <> 99
289
+	 */
290
+	public function testPHPUnitVersionOperatorNotEquals()
291
+	{
292
+	}
293
+
294
+	/**
295
+	 * @requires PHPUnit >=99
296
+	 */
297
+	public function testPHPUnitVersionOperatorNoSpace()
298
+	{
299
+	}
300
+
301
+	/**
302
+	 * @requires extension testExtOne < 1.0
303
+	 */
304
+	public function testExtensionVersionOperatorLessThan()
305
+	{
306
+	}
307
+
308
+	/**
309
+	 * @requires extension testExtOne <= 1.0
310
+	 */
311
+	public function testExtensionVersionOperatorLessThanEquals()
312
+	{
313
+	}
314
+
315
+	/**
316
+	 * @requires extension testExtOne > 99
317
+	 */
318
+	public function testExtensionVersionOperatorGreaterThan()
319
+	{
320
+	}
321
+
322
+	/**
323
+	 * @requires extension testExtOne >= 99
324
+	 */
325
+	public function testExtensionVersionOperatorGreaterThanEquals()
326
+	{
327
+	}
328
+
329
+	/**
330
+	 * @requires extension testExtOne = 1.0
331
+	 */
332
+	public function testExtensionVersionOperatorEquals()
333
+	{
334
+	}
335
+
336
+	/**
337
+	 * @requires extension testExtOne == 1.0
338
+	 */
339
+	public function testExtensionVersionOperatorDoubleEquals()
340
+	{
341
+	}
342
+
343
+	/**
344
+	 * @requires extension testExtOne != 99
345
+	 */
346
+	public function testExtensionVersionOperatorBangEquals()
347
+	{
348
+	}
349
+
350
+	/**
351
+	 * @requires extension testExtOne <> 99
352
+	 */
353
+	public function testExtensionVersionOperatorNotEquals()
354
+	{
355
+	}
356
+
357
+	/**
358
+	 * @requires extension testExtOne >=99
359
+	 */
360
+	public function testExtensionVersionOperatorNoSpace()
361
+	{
362
+	}
363
+
364
+	/**
365
+	 * @requires PHP ~1.0
366
+	 * @requires PHPUnit ~2.0
367
+	 */
368
+	public function testVersionConstraintTildeMajor()
369
+	{
370
+	}
371
+
372
+	/**
373
+	 * @requires PHP ^1.0
374
+	 * @requires PHPUnit ^2.0
375
+	 */
376
+	public function testVersionConstraintCaretMajor()
377
+	{
378
+	}
379
+
380
+	/**
381
+	 * @requires PHP ~3.4.7
382
+	 * @requires PHPUnit ~4.7.1
383
+	 */
384
+	public function testVersionConstraintTildeMinor()
385
+	{
386
+	}
387
+
388
+	/**
389
+	 * @requires PHP ^7.0.17
390
+	 * @requires PHPUnit ^4.7.1
391
+	 */
392
+	public function testVersionConstraintCaretMinor()
393
+	{
394
+	}
395
+
396
+	/**
397
+	 * @requires PHP ^5.6 || ^7.0
398
+	 * @requires PHPUnit ^5.0 || ^6.0
399
+	 */
400
+	public function testVersionConstraintCaretOr()
401
+	{
402
+	}
403
+
404
+	/**
405
+	 * @requires PHP ~5.6.22 || ~7.0.17
406
+	 * @requires PHPUnit ^5.0.5 || ^6.0.6
407
+	 */
408
+	public function testVersionConstraintTildeOr()
409
+	{
410
+	}
411
+
412
+	/**
413
+	 * @requires PHP ~5.6.22 || ^7.0
414
+	 * @requires PHPUnit ~5.6.22 || ^7.0
415
+	 */
416
+	public function testVersionConstraintTildeOrCaret()
417
+	{
418
+	}
419
+	/**
420
+	 * @requires PHP ^5.6 || ~7.0.17
421
+	 * @requires PHPUnit ^5.6 || ~7.0.17
422
+	 */
423
+	public function testVersionConstraintCaretOrTilde()
424
+	{
425
+	}
426
+
427
+	/**
428
+	 * @requires   PHP        ~5.6.22 || ~7.0.17
429
+	 * @requires   PHPUnit    ~5.6.22 || ~7.0.17
430
+	 */
431
+	public function testVersionConstraintRegexpIgnoresWhitespace()
432
+	{
433
+	}
434
+
435
+	/**
436
+	 * @requires   PHP ~^12345
437
+	 */
438
+	public function testVersionConstraintInvalidPhpConstraint()
439
+	{
440
+	}
441
+	/**
442
+	 * @requires   PHPUnit ~^12345
443
+	 */
444
+	public function testVersionConstraintInvalidPhpUnitConstraint()
445
+	{
446
+	}
447 447
 }
Please login to merge, or discard this patch.
vendor/phpunit/phpunit/tests/_files/CoverageNotPrivateTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 
4 4
 class CoverageNotPrivateTest extends TestCase
5 5
 {
6
-    /**
7
-     * @covers CoveredClass::<!private>
8
-     */
9
-    public function testSomething()
10
-    {
11
-        $o = new CoveredClass;
12
-        $o->publicMethod();
13
-    }
6
+	/**
7
+	 * @covers CoveredClass::<!private>
8
+	 */
9
+	public function testSomething()
10
+	{
11
+		$o = new CoveredClass;
12
+		$o->publicMethod();
13
+	}
14 14
 }
Please login to merge, or discard this patch.
vendor/phpunit/phpunit/tests/_files/NotPublicTestCase.php 1 patch
Indentation   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -3,11 +3,11 @@
 block discarded – undo
3 3
 
4 4
 class NotPublicTestCase extends TestCase
5 5
 {
6
-    public function testPublic()
7
-    {
8
-    }
6
+	public function testPublic()
7
+	{
8
+	}
9 9
 
10
-    protected function testNotPublic()
11
-    {
12
-    }
10
+	protected function testNotPublic()
11
+	{
12
+	}
13 13
 }
Please login to merge, or discard this patch.
vendor/phpunit/phpunit/tests/_files/Struct.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,10 +1,10 @@
 block discarded – undo
1 1
 <?php
2 2
 class Struct
3 3
 {
4
-    public $var;
4
+	public $var;
5 5
 
6
-    public function __construct($var)
7
-    {
8
-        $this->var = $var;
9
-    }
6
+	public function __construct($var)
7
+	{
8
+		$this->var = $var;
9
+	}
10 10
 }
Please login to merge, or discard this patch.
vendor/phpunit/phpunit/tests/_files/CoveragePrivateTest.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -3,12 +3,12 @@
 block discarded – undo
3 3
 
4 4
 class CoveragePrivateTest extends TestCase
5 5
 {
6
-    /**
7
-     * @covers CoveredClass::<private>
8
-     */
9
-    public function testSomething()
10
-    {
11
-        $o = new CoveredClass;
12
-        $o->publicMethod();
13
-    }
6
+	/**
7
+	 * @covers CoveredClass::<private>
8
+	 */
9
+	public function testSomething()
10
+	{
11
+		$o = new CoveredClass;
12
+		$o->publicMethod();
13
+	}
14 14
 }
Please login to merge, or discard this patch.