관리-도구
편집 파일: phpunit.xml
<?xml version="1.0" encoding="UTF-8"?> <phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/8.5/phpunit.xsd" bootstrap="vendor/autoload.php" colors="true" verbose="true" failOnRisky="true" failOnWarning="true"> <testsuites> <testsuite name="unit"> <directory>tests/Unit</directory> </testsuite> <testsuite name="integration"> <directory>tests/Integration</directory> </testsuite> </testsuites> <filter> <whitelist processUncoveredFilesFromWhitelist="true"> <directory suffix=".php">src</directory> <exclude> <file>src/index.php</file> </exclude> </whitelist> </filter> <php> <ini name="error_reporting" value="-1"/> <ini name="display_errors" value="1"/> <ini name="display_startup_errors" value="1"/> <ini name="memory_limit" value="512M"/> </php> </phpunit>