Left file: appwork-v1_3_1/laravel-starter/phpunit.xml  
Right file: appwork-v1_4_0/laravel-starter/phpunit.xml  
<?xml version="1.0" encoding="UTF-8"?> = <?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"   <phpunit backupGlobals="false"
         backupStaticAttributes="false"            backupStaticAttributes="false"
         bootstrap="vendor/autoload.php"            bootstrap="vendor/autoload.php"
         colors="true"            colors="true"
         convertErrorsToExceptions="true"            convertErrorsToExceptions="true"
         convertNoticesToExceptions="true"            convertNoticesToExceptions="true"
         convertWarningsToExceptions="true"            convertWarningsToExceptions="true"
         processIsolation="false"            processIsolation="false"
         stopOnFailure="false">            stopOnFailure="false">
    <testsuites>       <testsuites>
        <testsuite name="Feature">           <testsuite name="Feature">
            <directory suffix="Test.php">./tests/Feature</directory>               <directory suffix="Test.php">./tests/Feature</directory>
        </testsuite>           </testsuite>
     
        <testsuite name="Unit">           <testsuite name="Unit">
            <directory suffix="Test.php">./tests/Unit</directory>               <directory suffix="Test.php">./tests/Unit</directory>
        </testsuite>           </testsuite>
    </testsuites>       </testsuites>
    <filter>       <filter>
        <whitelist processUncoveredFilesFromWhitelist="true">           <whitelist processUncoveredFilesFromWhitelist="true">
            <directory suffix=".php">./app</directory>               <directory suffix=".php">./app</directory>
        </whitelist>           </whitelist>
    </filter>       </filter>
  -+     <extensions>
            <extension class="Tests\Bootstrap"/>
        </extensions>
    <php> =     <php>
        <server name="APP_ENV" value="testing"/>           <server name="APP_ENV" value="testing"/>
        <server name="BCRYPT_ROUNDS" value="4"/>           <server name="BCRYPT_ROUNDS" value="4"/>
        <server name="CACHE_DRIVER" value="array"/>           <server name="CACHE_DRIVER" value="array"/>
        <server name="MAIL_DRIVER" value="array"/>           <server name="MAIL_DRIVER" value="array"/>
        <server name="QUEUE_CONNECTION" value="sync"/>           <server name="QUEUE_CONNECTION" value="sync"/>
        <server name="SESSION_DRIVER" value="array"/>           <server name="SESSION_DRIVER" value="array"/>
  -+         <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"/>
    </php> =     </php>
</phpunit>   </phpunit>