Changeset 285 for trunk/ext/php
- Timestamp:
- 10/18/2007 06:21:51 (13 months ago)
- Location:
- trunk/ext/php/phpunit-tests
- Files:
-
- 2 modified
-
TestDump.php (modified) (1 diff)
-
TestLoad.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/ext/php/phpunit-tests/TestDump.php
r282 r285 4 4 dl('syck.so'); 5 5 6 date_default_timezone_set('GMT'); 7 6 8 require_once "PHPUnit/Framework/TestCase.php"; 7 9 require 'helpers.php'; 8 10 9 error_reporting(E_ALL );11 error_reporting(E_ALL | E_STRICT); 10 12 11 13 class TestDump extends PHPUnit_Framework_TestCase -
trunk/ext/php/phpunit-tests/TestLoad.php
r284 r285 4 4 dl('syck.so'); 5 5 6 date_default_timezone_set('GMT'); 7 6 8 require_once "PHPUnit/Framework/TestCase.php"; 7 9 require 'helpers.php'; 8 10 9 error_reporting(E_ALL );11 error_reporting(E_ALL | E_STRICT); 10 12 11 13