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);
|
||
|
|
}
|
||
|
|
}
|