Bladeren bron

Added readable test titles to all unit test.

Taddes Kroes 14 jaren geleden
bovenliggende
commit
9182a8e1d8
4 gewijzigde bestanden met toevoegingen van 16 en 0 verwijderingen
  1. 4 0
      test/test_array.php
  2. 4 0
      test/test_pquery.php
  3. 4 0
      test/test_sql.php
  4. 4 0
      test/test_template.php

+ 4 - 0
test/test_array.php

@@ -1,6 +1,10 @@
 <?php
 
 class pQueryArrayTest extends UnitTestCase {
+	function __construct() {
+		$this->UnitTestCase('pQuery array plugin test');
+	}
+	
 	function test_() {
 		
 	}

+ 4 - 0
test/test_pquery.php

@@ -1,6 +1,10 @@
 <?php
 
 class pQueryTest extends UnitTestCase {
+	function __construct() {
+		$this->UnitTestCase('pQuery base test');
+	}
+	
 	function test_() {
 		
 	}

+ 4 - 0
test/test_sql.php

@@ -1,6 +1,10 @@
 <?php
 
 class pQuerySqlTest extends UnitTestCase {
+	function __construct() {
+		$this->UnitTestCase('pQuery MySQL plugin test');
+	}
+	
 	function test_() {
 		
 	}

+ 4 - 0
test/test_template.php

@@ -1,6 +1,10 @@
 <?php
 
 class pQueryTemplateTest extends UnitTestCase {
+	function __construct() {
+		$this->UnitTestCase('pQuery template plugin test');
+	}
+	
 	function test_() {
 		
 	}