-
-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathphpunit-no-yii-autoload.xml.dist
More file actions
17 lines (17 loc) · 824 Bytes
/
phpunit-no-yii-autoload.xml.dist
File metadata and controls
17 lines (17 loc) · 824 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="utf-8"?>
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" bootstrap="./tests/bootstrap-no-autoload.php" colors="true" convertErrorsToExceptions="true" convertNoticesToExceptions="true" convertWarningsToExceptions="true" stopOnFailure="false" processIsolation="true" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/9.3/phpunit.xsd">
<coverage processUncoveredFiles="true">
<include>
<directory suffix=".php">./src</directory>
</include>
<exclude>
<directory suffix=".php">./src/dummy</directory>
<directory suffix=".php">./src/views</directory>
</exclude>
</coverage>
<testsuites>
<testsuite name="Yii 2 Migration Test Suite (No Yii Autoloader)">
<directory>./tests</directory>
</testsuite>
</testsuites>
</phpunit>