--TEST-- phpunit --log-graphviz php://stdout BankAccountTest ../../Samples/BankAccount/BankAccountTest.php --FILE-- --EXPECTF-- PHPUnit %s by Sebastian Bergmann. ...strict digraph G { overlap=scale; splines=true; sep=.1; fontsize=8; BankAccountTest [ color=green ]; subgraph BankAccountTest { testBalanceIsInitiallyZero [ color=green ]; testBalanceCannotBecomeNegative [ color=green ]; testBalanceCannotBecomeNegative2 [ color=green ]; } BankAccountTest -> testBalanceIsInitiallyZero; BankAccountTest -> testBalanceCannotBecomeNegative; BankAccountTest -> testBalanceCannotBecomeNegative2; } Time: %i seconds OK (3 tests, 3 assertions)