예제 #1
0
파일: Test.php 프로젝트: shabbyrobe/fulfil
 protected function getDataSetAsString($includeData = true)
 {
     $out = parent::getDataSetAsString($includeData);
     if ($this->dataName) {
         $out .= "\n{$this->dataFile}\n{$this->dataName}";
     }
     return $out;
 }
예제 #2
0
파일: Abstract.php 프로젝트: gauthierm/MDB2
 /**
  * Override PHPUnit's default behavior so authentication data doesn't
  * get broadcasted
  */
 protected function getDataSetAsString($strict = true)
 {
     return parent::getDataSetAsString(false);
 }