單元測試
安裝
composer require --dev phpunit/phpunit
使用
建立文件 tests/TestConfig.php
,用於測試資料庫配置
<?php
use PHPUnit\Framework\TestCase;
class TestConfig extends TestCase
{
public function testAppConfig()
{
$config = config('app');
self::assertIsArray($config);
self::assertArrayHasKey('debug', $config);
self::assertIsBool($config['debug']);
self::assertArrayHasKey('default_timezone', $config);
self::assertIsString($config['default_timezone']);
}
}
執行
在專案根目錄下執行 ./vendor/bin/phpunit --bootstrap support/bootstrap.php tests/TestConfig.php
執行結果如下:
PHPUnit 9.5.10 by Sebastian Bergmann and contributors.
. 1 / 1 (100%)
Time: 00:00.010, Memory: 6.00 MB
OK (1 test, 5 assertions)