作者:mobiledu2502880603 | 来源:互联网 | 2022-12-12 12:09
我在我的目录f:\ lara_app中安装了一个Laravel应用程序.我使用PHP artisan serve来运行应用程序.我有Laravel版本5.4.36(通过Composer安装)
我没有尝试使用PHP单元进行测试.在f:/lara_app/tests/Unit/ExampleTest.php里面,我有以下代码:
namespace Tests\Unit;
use Tests\TestCase;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$this->assertTrue(true);
}
public function myFirstTest()
{
$value = 'Hello World';
$this->assertTrue( 'Hello' === $value, 'Value should be Hello World');
}
}
我现在尝试从命令提示符运行测试:
f:\lara_app> .vendor/phpunit/phpuni/phpunit
但我收到以下消息:
'.vendor'不被识别为内部或外部命令,可操作程序或批处理文件
我如何运行PHPUnit测试?
提前致谢
1> Marcus..:
这应该适用于Windows
f:\lara_app> php vendor/phpunit/phpunit/phpunit
2> 小智..:
使用引号:
"./vendor/bin/phpunit"