PromotionDayChargeTest.php 473 B

12345678910111213141516171819
  1. <?php
  2. namespace Tests\Console\Commands\Statistic;
  3. use App\Console\Commands\Statistic\PromotionDayCharge;
  4. use PHPUnit\Framework\TestCase;
  5. class PromotionDayChargeTest extends \Tests\TestCase
  6. {
  7. public function testHandle()
  8. {
  9. for($i = 0; $i > -27; $i--) {
  10. $date = date('Y-m-d', strtotime(sprintf('%s day', $i)));
  11. $data[] = 'php artisan Statistic:CompanyDayCharge --date='.$date;
  12. }
  13. dump(join(' && ', $data));
  14. }
  15. }