UpgradeTest.php 252 B

12345678910111213
  1. <?php
  2. declare(strict_types=1);
  3. namespace Tests\Commands\Upgrade\V17_0_0;
  4. class UpgradeTest extends \Tests\Commands\Upgrade\TestCase
  5. {
  6. public function testUpgrade(): void
  7. {
  8. $this->artisan('bjyblog:update')->assertExitCode(0);
  9. }
  10. }