示例#1
0
 public function startTest($title = NULL)
 {
     $test = new UnitTest($this);
     $test->title = $title === NULL ? md5(uniqid(rand())) : $title;
     $this->testStack[$test->getId()] = $test;
     return $test;
 }