Skip to content

Commit

Permalink
Bootstrap phpunit
Browse files Browse the repository at this point in the history
  • Loading branch information
donatj committed Aug 6, 2022
1 parent 264cf23 commit bb0453d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion phpunit.xml.dist
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<phpunit bootstrap="vendor/autoload.php">
<phpunit bootstrap="tests/bootstrap.php">
<testsuites>
<testsuite name="Application">
<directory>tests</directory>
Expand Down
5 changes: 5 additions & 0 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
<?php

require __DIR__ . '/../vendor/autoload.php';

error_reporting(-1);

0 comments on commit bb0453d

Please sign in to comment.