これは私のユニットテストクラスです
<?
require_once '../simpletest/unit_tester.php';
require_once '../simpletest/reporter.php';
class Academic extends UnitTestCase
{
function setUp()
{
}
function tearDown()
{
}
function testAc1()
{
}
function testAc4()
{
}
function testAc7()
{
}
}
$test = new Academic();
$test->run(new HtmlReporter());
?>
このスクリプトを実行すると、すべてのメソッド、つまり、testAc1、testAc4、testAc7 などが実行されます。単一のメソッドだけを実行する方法はありますか?
ありがとう、シカール