猿问

PHPUNIT - 显示空白消息

我正在尝试使用 PHP Unit 编写单元测试。这是代码。


<?php

require_once 'E:/bin/phpunit.phar';

//use PHPUnit\Framework\TestCase;


final class FirstUnitTest extends PHPUnit_Framework_TestCase

{

    public function test1() {

        $this->assertEquals(5+5,10);

    }

}


$obj = new FirstUnitTest();

$obj->test1();

?>

仅获取以下答案


#!/usr/bin/env php 

这段代码有什么问题。我正在接受答案应该没问题。


我通过浏览器运行此文件,而不是从命令行运行。


皈依舞
浏览 107回答 2
2回答

慕妹3146593

这不是您使用 PHPUnit 的方式。

至尊宝的传说

运行 PHP 单元测试用例的正确方法<?phprequire_once 'E:/bin/phpunit.phar';//use PHPUnit\Framework\TestCase;final class FirstUnitTest extends PHPUnit_Framework_TestCase{&nbsp; &nbsp; public function test1() {&nbsp; &nbsp; &nbsp; &nbsp; $this->assertEquals(5+5,10);&nbsp; &nbsp; }}?>窗机用C:\Users\username>path\to\php path\to\phpunit.phar --verbose FirstUnitTest或者您可以通过设置路径环境变量来使用C:\Users\username>php phpunit --verbose FirstUnitTest
随时随地看视频慕课网APP
我要回答