base.php 573 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. include_once 'config.php';
  3. class pQueryTest extends PHPUnit_Framework_TestCase {
  4. function test_constructor() {
  5. }
  6. function test_set_variable() {
  7. }
  8. function test_getter() {
  9. }
  10. function test_setter() {
  11. }
  12. function test_exception_handler() {
  13. }
  14. function test_extend() {
  15. }
  16. function test_error() {
  17. }
  18. function test_load_utils() {
  19. }
  20. function test_load_plugin() {
  21. }
  22. function test_require_plugins() {
  23. }
  24. function test_assert_defined_defined() {
  25. }
  26. function test_assert_defined_undefined() {
  27. }
  28. }
  29. ?>