我在让 Laravel 为我的测试用例加载正确的 .env 文件时遇到了一些问题。我正在使用 PHPUnit,并在 phpunit.xml 中设置了以下 var:
<?xml version="1.0" encoding="UTF-8"?>
<phpunit backupGlobals="false"
backupStaticAttributes="false"
bootstrap="bootstrap/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
processIsolation="false"
stopOnFailure="false">
<testsuites>
<testsuite name="Application Test Suite">
<directory suffix="Test.php">./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">./app</directory>
<exclude>
<file>./app/Http/routes.php</file>
</exclude>
</whitelist>
</filter>
<php>
<env name="APP_ENV" value="testing"/>
<env name="DB_CONNECTION" value="sqlite"/>
<env name="CACHE_DRIVER" value="array"/>
<env name="SESSION_DRIVER" value="array"/>
<env name="QUEUE_DRIVER" value="sync"/>
</php>
</phpunit>
在我的 .env.testing 文件中,我有:
APP_ENV=testing
DB_CONNECTION=sqlite
我在 config/database.php 下建立了他的连接:
'sqlite' => [
'driver' => 'sqlite',
'database' => ':memory:',
'prefix' => ''
]
它只是没有加载 .env.testing 文件。如果我在我的 TestCase.php 中这样做:
dd(env('APP_ENV'));
我仍然从我的 .env 文件中获得“发展”
我也尝试过使用:
$app->loadEnvironmentFrom('.env.testing');
有谁知道可能出了什么问题?