@@ -20,7 +20,7 @@ Immediate Exception Printer is a [PHPUnit][PHPUnit] plug-in that prints out exce
20
20
21
21
The following preview is somewhat atypical but shows all supported output cases.
22
22
23
- ![ Preview image] ( https://raw.githubusercontent.com/ScriptFUSION /PHPUnit-Immediate-Exception-Printer/master/doc/images/test%20run%201.3.png )
23
+ ![ Preview image] ( https://raw.githubusercontent.com/workivate /PHPUnit-Immediate-Exception-Printer/master/doc/images/test%20run%201.3.png )
24
24
25
25
This printer makes no attempt to modify the test summary; only runtime output is changed.
26
26
@@ -29,22 +29,22 @@ This printer makes no attempt to modify the test summary; only runtime output is
29
29
1 . Add the dependency to your Composer file's ` require-dev ` section.
30
30
31
31
``` json
32
- "scriptfusion /phpunit-immediate-exception-printer" : " ^1"
32
+ "lifeworks /phpunit-immediate-exception-printer" : " ^1"
33
33
```
34
34
35
35
2 . Declare the printer class in your [`phpunit.xml` configuration file](https://phpunit.de/manual/current/en/appendixes.configuration.html).
36
36
37
37
```xml
38
38
<phpunit
39
- printerClass="ScriptFUSION \PHPUnitImmediateExceptionPrinter\ImmediateExceptionPrinter"
39
+ printerClass="LifeWorksForks \PHPUnitImmediateExceptionPrinter\ImmediateExceptionPrinter"
40
40
colors="true"
41
41
>
42
42
```
43
43
44
44
3 . Run the tests! If you didn't update `phpunit.xml` the same options can be specified on the command-line instead.
45
45
46
46
```bash
47
- vendor/bin/phpunit --printer 'ScriptFUSION \PHPUnitImmediateExceptionPrinter\ImmediateExceptionPrinter' --color
47
+ vendor/bin/phpunit --printer 'LifeWorksForks \PHPUnitImmediateExceptionPrinter\ImmediateExceptionPrinter' --color
48
48
```
49
49
50
50
4 . Enjoy immediate test execution feedback.
@@ -85,15 +85,15 @@ Thanks to the following open source projects that inspired this project. Keep be
85
85
* [ skyzyx/phpunit-result-printer] ( https://github.com/skyzyx/phpunit-result-printer ) &ndash ; Design.
86
86
87
87
88
- [ Releases ] : https://github.com/ScriptFUSION /PHPUnit-Immediate-Exception-Printer/releases
89
- [ Version image ] : https://poser.pugx.org/scriptfusion/phpunit-immediate-exception-printer/version " Latest version "
90
- [ Downloads ] : https://packagist.org/packages/scriptfusion /phpunit-immediate-exception-printer
91
- [ Downloads image ] : https://poser.pugx.org/scriptfusion/phpunit-immediate-exception-printer/downloads " Total downloads "
92
- [ Build ] : https://travis-ci.org/ScriptFUSION/PHPUnit-Immediate-Exception-Printer
93
- [ Build image ] : https://travis-ci.org/ScriptFUSION/PHPUnit-Immediate-Exception-Printer.svg?branch=master " Build status "
94
- [ Coverage ] : https://codecov.io/gh/ScriptFUSION/PHPUnit-Immediate-Exception-Printer
95
- [ Coverage image ] : https://codecov.io/gh/ScriptFUSION/PHPUnit-Immediate-Exception-Printer/branch/master/graphs/badge.svg " Test coverage "
96
- [ Style ] : https://styleci.io/repos/83920053
97
- [ Style image ] : https://styleci.io/repos/83920053/shield?style=flat " Code style "
88
+ [ Releases ] : https://github.com/lifeworks /PHPUnit-Immediate-Exception-Printer/releases
89
+ ~ [ Version image] : https://poser.pugx.org/scriptfusion/phpunit-immediate-exception-printer/version "Latest version"~
90
+ [ Downloads ] : https://packagist.org/packages/lifeworks /phpunit-immediate-exception-printer
91
+ ~ [ Downloads image] : https://poser.pugx.org/scriptfusion/phpunit-immediate-exception-printer/downloads "Total downloads"~
92
+ ~ [ Build] : https://travis-ci.org/ScriptFUSION/PHPUnit-Immediate-Exception-Printer ~
93
+ ~ [ Build image] : https://travis-ci.org/ScriptFUSION/PHPUnit-Immediate-Exception-Printer.svg?branch=master "Build status"~
94
+ ~ [ Coverage] : https://codecov.io/gh/ScriptFUSION/PHPUnit-Immediate-Exception-Printer ~
95
+ ~ [ Coverage image] : https://codecov.io/gh/ScriptFUSION/PHPUnit-Immediate-Exception-Printer/branch/master/graphs/badge.svg "Test coverage"~
96
+ ~ [ Style] : https://styleci.io/repos/83920053 ~
97
+ ~ [ Style image] : https://styleci.io/repos/83920053/shield?style=flat "Code style"~
98
98
99
99
[ PHPUnit ] : https://github.com/sebastianbergmann/phpunit
0 commit comments