yii2使用phpunit的问题 老是提示没有加载类 [ 2.0 版本 ]
PHPUnit 5.7.25 by Sebastian Bergmann and contributors.
PHP Fatal error: Class 'app\ceshi\Te' not found in /data/wwwroot/ceshi/ceshi/Book.php on line 18
yujuntao 补充于 2017-12-04 16:09
Book.php
namespace app\ceshi;
use PHPUnit\Framework\TestCase;
use app\ceshi\Te;
class Book extends TestCase{
public function testGet()
{
$y = new Te();
echo $y->u;
}
}
Te.php
namespace app\ceshi;
class Te{
public $u ="yujt";
}
共 1 个回答
yujuntao
注册时间:2017-03-19
最后登录:2018-03-16
在线时长:6小时17分
最后登录:2018-03-16
在线时长:6小时17分
- 粉丝0
- 金钱105
- 威望0
- 积分165