* Remove sempro/phpunit-pretty-print * Bump PHPUnit dependencies * Bump nunomaduro/collision and filp/whoops * Update phpunit.xml * Change setUp to protected * Remove --verbose option * Update phpunit.xml * Remove Bootstrap * Add types in tests * Make tests class final * Remove unused variables * Add .phpunit.cache to .gitignore * Apply fixes from StyleCI * Update phpunit.xml * Break tests (to test CI/CD) * Revert "Break tests (to test CI/CD)" This reverts commit 928b199bc4ee09238f83f33cc7c12304992368ab. * Update composer.lock --------- Co-authored-by: StyleCI Bot <bot@styleci.io> Co-authored-by: Nabeel S <nabeelio@users.noreply.github.com>
44 lines
2.1 KiB
XML
Executable File
44 lines
2.1 KiB
XML
Executable File
<?xml version="1.0" encoding="UTF-8"?>
|
|
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="bootstrap/autoload.php" colors="true" testdox="true" processIsolation="false" stopOnFailure="true" beStrictAboutOutputDuringTests="false" beStrictAboutTestsThatDoNotTestAnything="false" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" cacheDirectory=".phpunit.cache">
|
|
<testsuites>
|
|
<testsuite name="Application Test Suite">
|
|
<directory suffix="Test.php">./tests</directory>
|
|
</testsuite>
|
|
</testsuites>
|
|
<!--<listeners>
|
|
<listener class="NunoMaduro\Collision\Adapters\Phpunit\Listener"/>
|
|
</listeners>-->
|
|
<php>
|
|
<ini name="error_reporting" value="E_ALL"/>
|
|
<ini name="display_errors" value="On"/>
|
|
<ini name="display_startup_errors" value="On"/>
|
|
<ini name="memory_limit" value="-1"/>
|
|
<server name="APP_ENV" value="testing"/>
|
|
<server name="APP_KEY" value="base64:ve66Z5Kt/zTN3p++0zOPu854PHfZkwJE5VuoFAlzHtI="/>
|
|
<server name="APP_DEBUG" value="true"/>
|
|
<server name="APP_LOG_LEVEL" value="error"/>
|
|
<server name="APP_URL" value="http://localhost"/>
|
|
<server name="BCRYPT_ROUNDS" value="4"/>
|
|
<server name="CACHE_DRIVER" value="array"/>
|
|
<server name="DB_CONNECTION" value="memory"/>
|
|
<server name="DB_PREFIX" value=""/>
|
|
<server name="MAIL_MAILER" value="array"/>
|
|
<server name="QUEUE_DRIVER" value="sync"/>
|
|
<server name="SESSION_DRIVER" value="array"/>
|
|
<server name="TELESCOPE_ENABLED" value="false"/>
|
|
<server name="APP_CONFIG_CACHE" value="bootstrap/cache/config.phpunit.php"/>
|
|
<server name="APP_SERVICES_CACHE" value="bootstrap/cache/services.phpunit.php"/>
|
|
<server name="APP_PACKAGES_CACHE" value="bootstrap/cache/packages.phpunit.php"/>
|
|
<server name="APP_ROUTES_CACHE" value="bootstrap/cache/routes.phpunit.php"/>
|
|
<server name="APP_EVENTS_CACHE" value="bootstrap/cache/events.phpunit.php"/>
|
|
<!-- ###+ symfony/mailer ### -->
|
|
<!-- MAILER_DSN=smtp://localhost -->
|
|
<!-- ###- symfony/mailer ### -->
|
|
</php>
|
|
<source>
|
|
<include>
|
|
<directory suffix=".php">./app</directory>
|
|
</include>
|
|
</source>
|
|
</phpunit>
|