php PHPUnit:编写Artisan命令测试
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php PHPUnit:编写Artisan命令测试相关的知识,希望对你有一定的参考价值。
<?php
namespace Tests\Unit;
use Tests\TestCase;
class ReloadCacheTest extends TestCase
{
/** @test */
public function it_has_reload_cache_command()
{
$this->assertTrue(class_exists(\App\Console\Commands\ReloadCacheCommand::class));
}
/** @test */
public function it_can_reload_caches()
{
$this->artisan('reload:cache')
->expectsOutput('Compiled views cleared!')
->expectsOutput('Route cache cleared!')
->expectsOutput('Compiled views cleared!')
->expectsOutput('Application cache cleared!')
->expectsOutput('Route cache cleared!')
->expectsOutput('Configuration cache cleared!')
->expectsOutput('Compiled services and packages files removed!')
->expectsOutput('Caches cleared successfully!')
->expectsOutput('Configuration cache cleared!')
->expectsOutput('Configuration cached successfully!')
->expectsOutput('Successfully reload caches.')
->assertExitCode(0);
}
}
以上是关于php PHPUnit:编写Artisan命令测试的主要内容,如果未能解决你的问题,请参考以下文章
PHPUnit 测试使用 XAMPP localhost 而不是 laravel artisan serve
如何从 Laravel Artisan 触发单元测试
使用不同的 .env 从其他 Artisan 命令调用 Artisan 命令
接口自动化测试之PHPUnit-框架代码编写2
夯实PHP基础PHPUnit -- PHP测试框架
Laravel 和 phpunit - 无法进行测试