getSize() public method

Number of contained test cases.
public getSize ( ) : integer
return integer Total count of cases in the group.
コード例 #1
0
ファイル: autorun_test.php プロジェクト: ngugijames/ThinkUp
 function testLoadIfIncluded()
 {
     $tests = new TestSuite();
     $tests->addFile(dirname(__FILE__) . '/support/test1.php');
     $this->assertEqual($tests->getSize(), 1);
 }