这是FIle Test它需要PHPunit并且我安装了PHPunit,但是不知道使用它:
<?php
# -*- compile-command: (concat "phpunit " buffer-file-name) -*-
require_once 'PHPUnit/Framework.php';
require_once 'common.php';
class Authentication extends PHPUnit_Framework_TestCase{
........
}
?>
它指导:
安装时(PHPunit)只需运行 命令phpunit在上面 目录,它将启动 测试
但我不明白怎么做&gt;&lt;
答案 0 :(得分:1)
这里有很多问题你没有得到答复。 BUT 马上,我发现你的身份验证类名称有问题。
PHPUnit要求根据特定的命名约定命名运行的任何测试用例。
我无法回想起我的头脑,但我认为这是testAuthentication
我会查看一些代码并回复你。
EDIT1:
尝试命名类AuthenticationTest
并在其中放置一个名为testAuthentication
应满足PHPUnit运行测试的要求