コード例 #1
0
ファイル: all_tests.php プロジェクト: rafaelss/php-codes
 function __construct($title = false)
 {
     parent::__construct($title);
     $path = dirname(__FILE__);
     $this->addTestClass('TestOfAnnotations');
     $this->addTestClass('TestOfAnnotation');
     $this->addTestClass('TestOfAnnotationParser');
     $this->addTestClass('TestOfDocComment');
 }
コード例 #2
0
ファイル: all_tests.php プロジェクト: w3hacker/queryphp
 function __construct($title = false)
 {
     parent::__construct($title);
     $this->addTestClass('TestOfAnnotations');
     $this->addTestClass('TestOfPerformanceFeatures');
     $this->addTestClass('TestOfSupportingFeatures');
     $this->addTestClass('TestOfAnnotation');
     $this->addTestClass('TestOfConstrainedAnnotation');
     $this->addTestClass('TestOfMatchers');
     $this->addTestClass('TestOfAnnotationMatchers');
     $this->addTestClass('TestOfDocComment');
 }
コード例 #3
0
 /**
  * Constructor.
  * Loads in all the testcases.
  */
 public function __construct()
 {
     parent::__construct("TestOfMessage");
     $this->addTestCase(new GeneralTestOfMessage());
     $this->addTestCase(new TestOfMessageWithSubParts());
     $this->addTestCase(new TestOfMessageWithAttachments());
     $this->addTestCase(new TestOfMessageWithSubPartsAndAttachments());
     $this->addTestCase(new TestOfMessageWithEmbeddedFiles());
     $this->addTestCase(new TestOfMessageWithSubPartsAndEmbeddedFiles());
     $this->addTestCase(new TestOfMessageWithAttachmentsAndEmbeddedFiles());
     $this->addTestCase(new TestOfMessageWithAttachments_EmbeddedFiles_AndSubParts());
 }
コード例 #4
0
 /**
  * Constructor
  *
  * @param string $label
  */
 function __construct($label)
 {
     parent::__construct($label);
 }