Left file: appwork-v1_2_0/laravel-starter/phpunit.xml  
Right file: appwork-v1_2_1/laravel-starter/phpunit.xml  
1 <?xml version="1.0" encoding="UTF-8"?> = 1 <?xml version="1.0" encoding="UTF-8"?>
2 <phpunit backupGlobals="false"   2 <phpunit backupGlobals="false"
3          backupStaticAttributes="false"   3          backupStaticAttributes="false"
4          bootstrap="vendor/autoload.php"   4          bootstrap="vendor/autoload.php"
5          colors="true"   5          colors="true"
6          convertErrorsToExceptions="true"   6          convertErrorsToExceptions="true"
7          convertNoticesToExceptions="true"   7          convertNoticesToExceptions="true"
8          convertWarningsToExceptions="true"   8          convertWarningsToExceptions="true"
9          processIsolation="false"   9          processIsolation="false"
10          stopOnFailure="false">   10          stopOnFailure="false">
11     <testsuites>   11     <testsuites>
12         <testsuite name="Feature">   12         <testsuite name="Feature">
13             <directory suffix="Test.php">./tests/Feature</directory>   13             <directory suffix="Test.php">./tests/Feature</directory>
14         </testsuite>   14         </testsuite>
15     15  
16         <testsuite name="Unit">   16         <testsuite name="Unit">
17             <directory suffix="Test.php">./tests/Unit</directory>   17             <directory suffix="Test.php">./tests/Unit</directory>
18         </testsuite>   18         </testsuite>
19     </testsuites>   19     </testsuites>
20     <filter>   20     <filter>
21         <whitelist processUncoveredFilesFromWhitelist="true">   21         <whitelist processUncoveredFilesFromWhitelist="true">
22             <directory suffix=".php">./app</directory>   22             <directory suffix=".php">./app</directory>
23         </whitelist>   23         </whitelist>
24     </filter>   24     </filter>
25     <php>   25     <php>
26         <env name="APP_ENV" value="testing"/>   26         <env name="APP_ENV" value="testing"/>
27         <env name="CACHE_DRIVER" value="array"/>   27         <env name="CACHE_DRIVER" value="array"/>
28         <env name="SESSION_DRIVER" value="array"/>   28         <env name="SESSION_DRIVER" value="array"/>
29         <env name="QUEUE_DRIVER" value="sync"/> +-    
30         <env name="MAIL_DRIVER" value="array"/> = 29         <env name="MAIL_DRIVER" value="array"/>
    -+ 30         <env name="BCRYPT_ROUNDS" value="4"/>
      31         <env name="QUEUE_CONNECTION" value="sync"/>
31     </php> = 32     </php>
32 </phpunit>   33 </phpunit>