我在目录f:\lara_app中安装了Laravel应用。我使用PHP工匠服务来运行该应用程序。我有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测试?

提前致谢

最佳答案

使用引号:

"./vendor/bin/phpunit"

关于php - 如何从Windows命令提示符在Laravel中运行PHPUnit,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51093354/

10-16 10:53