Skip to content
This repository was archived by the owner on Sep 15, 2020. It is now read-only.

Commit fd7b7f2

Browse files
committed
added phpunit pretty printer
1 parent f4c11bc commit fd7b7f2

File tree

4 files changed

+275
-10
lines changed

4 files changed

+275
-10
lines changed

composer.json

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"require-dev": {
2121
"ahuggins/open-on-make": "^0.0.23",
2222
"beyondcode/laravel-dump-server": "^1.0",
23+
"codedungeon/phpunit-result-printer": "^0.25.0",
2324
"filp/whoops": "^2.0",
2425
"fzaninotto/faker": "^1.4",
2526
"laravel/telescope": "^0.1.3",

composer.lock

+259-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

phpunit-printer.yml

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
options:
2+
cd-printer-hide-class: false
3+
cd-printer-simple-output: false
4+
cd-printer-show-config: true
5+
cd-printer-hide-namespace: false
6+
cd-printer-anybar: false
7+
cd-printer-anybar-port: 1738
8+
markers:
9+
cd-pass: ""
10+
cd-fail: ""
11+
cd-error: ""
12+
cd-skipped: "=> "
13+
cd-incomplete: ""
14+
cd-risky: ""

phpunit.xml

+1-9
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
<?xml version="1.0" encoding="UTF-8"?>
2-
<phpunit backupGlobals="false"
3-
backupStaticAttributes="false"
4-
bootstrap="vendor/autoload.php"
5-
colors="true"
6-
convertErrorsToExceptions="true"
7-
convertNoticesToExceptions="true"
8-
convertWarningsToExceptions="true"
9-
processIsolation="false"
10-
stopOnFailure="false">
2+
<phpunit backupGlobals="false" backupStaticAttributes="false" bootstrap="vendor/autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" processIsolation="false" stopOnFailure="false" printerClass="Codedungeon\PHPUnitPrettyResultPrinter\Printer">
113
<testsuites>
124
<testsuite name="Unit">
135
<directory suffix="Test.php">./tests/Unit</directory>

0 commit comments

Comments
 (0)