コード例 #1
0
  function LimbGroupTest($label = false, $auto_label = true)
  {
    if($label && $auto_label)
      $label = make__FILE__readable($label);

    parent :: GroupTest($label);
  }
コード例 #2
0
ファイル: grouptest.php プロジェクト: miztaka/teeple2
 function myGroupTest()
 {
     parent::GroupTest('');
     $this->addTestFile(dirname(__FILE__) . '/test1.php');
     $this->addTestFile(dirname(__FILE__) . '/test2.php');
 }
コード例 #3
0
 function __construct($descripcion, $separar_casos = false, $separar_pruebas = false)
 {
     parent::GroupTest($descripcion);
     $this->separar_casos = $separar_casos;
     $this->separar_pruebas = $separar_pruebas;
 }
コード例 #4
0
 /**
  * Constructor
  *
  * @param string $label
  */
 function MaxGroupTest($label)
 {
     parent::GroupTest($label);
 }
コード例 #5
0
ファイル: eclipsetest.php プロジェクト: sebs/simpletest
 /**
  *    Sets the name of the test suite.
  *    @param string $label    Name sent at the start and end
  *                            of the test.
  *    @access public
  */
 function EclipseTest($label)
 {
     parent::GroupTest($label);
 }