Procházet zdrojové kódy

Added test skeleton for pQuery base class tests.

Taddeus Kroes před 14 roky
rodič
revize
650becb328
1 změnil soubory, kde provedl 46 přidání a 0 odebrání
  1. 46 0
      test/base.php

+ 46 - 0
test/base.php

@@ -3,7 +3,53 @@
 include_once 'config.php';
 
 class pQueryTest extends PHPUnit_Framework_TestCase {
+	function test_constructor() {
+		
+	}
 	
+	function test_set_variable() {
+		
+	}
+	
+	function test_getter() {
+		
+	}
+	
+	function test_setter() {
+		
+	}
+	
+	function test_exception_handler() {
+		
+	}
+	
+	function test_extend() {
+		
+	}
+	
+	function test_error() {
+		
+	}
+	
+	function test_load_utils() {
+		
+	}
+	
+	function test_load_plugin() {
+		
+	}
+	
+	function test_require_plugins() {
+		
+	}
+	
+	function test_assert_defined_defined() {
+		
+	}
+	
+	function test_assert_defined_undefined() {
+		
+	}
 }
 
 ?>