restat($dates); } //docker-compose run -d phpcli php /var/www/html/phpunit-9.2.5.phar --filter "/(TestRefillCommand::testRefillStatYesterday)( .*)?$/" --test-suffix TestRefillCommand.php /var/www/html/test public function testRefillStatYesterday() { Log::record("start testRefillStatYesterday",Log::DEBUG); $end_date = strtotime(date('Y-m-d',time())); $start_date = $end_date - 86400; $sDate = date('Y-m-d',$start_date); $refill = new statistics\stat_refill(); $refill->restat([$sDate]); } public function testCurDate() { $end_date = strtotime(date('Y-m-d',time())); $start_date = $end_date - 86400; $clear = new refill\order_clear(); $clear->clear($start_date,$end_date); $sDate = date('Y-m-d',$start_date); $refill = new statistics\stat_refill(); $refill->restat([$sDate]); } }