File tree Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Expand file tree Collapse file tree 2 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 2
2
<phpunit bootstrap =" vendor/autoload.php"
3
3
backupGlobals =" false"
4
4
backupStaticAttributes =" false"
5
+ beStrictAboutTestsThatDoNotTestAnything =" false"
5
6
colors =" true"
6
7
verbose =" true"
7
8
convertErrorsToExceptions =" true"
8
9
convertNoticesToExceptions =" true"
9
10
convertWarningsToExceptions =" true"
10
- processIsolation =" false"
11
+ failOnRisky =" true"
12
+ failOnWarning =" true"
11
13
stopOnFailure =" false" >
14
+ <php >
15
+ <ini name =" error_reporting" value =" -1" />
16
+ <env name =" RIDGE_TEST_DSN" value =" amqp://guest:guest@localhost:5672" />
17
+ </php >
12
18
<testsuites >
13
19
<testsuite name =" PHPinnacle Test Suite" >
14
20
<directory >tests</directory >
15
21
</testsuite >
16
22
</testsuites >
17
23
<filter >
18
24
<whitelist >
19
- <directory suffix =" .php" >src/</directory >
25
+ <directory >./</directory >
26
+ <exclude >
27
+ <directory >./tests</directory >
28
+ <directory >./vendor</directory >
29
+ </exclude >
20
30
</whitelist >
21
31
</filter >
22
32
<listeners >
27
37
<log type =" junit" target =" build/report.junit.xml" />
28
38
<log type =" coverage-html" target =" build/coverage" charset =" UTF-8" yui =" true" highlight =" true" />
29
39
<log type =" coverage-text" target =" build/coverage.txt" />
30
- <log type =" coverage-clover" target =" build/logs/ clover.xml" />
40
+ <log type =" coverage-clover" target =" build/clover.xml" />
31
41
</logging >
32
42
</phpunit >
Original file line number Diff line number Diff line change 10
10
11
11
namespace PHPinnacle \Ridge ;
12
12
13
- class Parser
13
+ final class Parser
14
14
{
15
15
/**
16
16
* @var Buffer
You can’t perform that action at this time.
0 commit comments