mirror of
https://gitee.com/hzchunfen/erp.git
synced 2025-11-30 22:20:45 +00:00
21 lines
365 B
PHP
21 lines
365 B
PHP
<?php
|
|
|
|
|
|
use Tests\TestCase;
|
|
|
|
class CheckPriceTest extends TestCase
|
|
{
|
|
use \Illuminate\Foundation\Testing\RefreshDatabase;
|
|
/**
|
|
* A basic test example.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testBasicTest()
|
|
{
|
|
$checkPrice =new \App\Console\Commands\CheckPrice();
|
|
$checkPrice->handle();
|
|
assertTrue(true);
|
|
}
|
|
}
|