Changeset 285 for trunk/ext/php

Show
Ignore:
Timestamp:
10/18/2007 06:21:51 (13 months ago)
Author:
indeyets
Message:

E_STRICT tests

Location:
trunk/ext/php/phpunit-tests
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • trunk/ext/php/phpunit-tests/TestDump.php

    r282 r285  
    44    dl('syck.so'); 
    55 
     6date_default_timezone_set('GMT'); 
     7 
    68require_once "PHPUnit/Framework/TestCase.php"; 
    79require 'helpers.php'; 
    810 
    9 error_reporting(E_ALL); 
     11error_reporting(E_ALL | E_STRICT); 
    1012 
    1113class TestDump extends PHPUnit_Framework_TestCase 
  • trunk/ext/php/phpunit-tests/TestLoad.php

    r284 r285  
    44    dl('syck.so'); 
    55 
     6date_default_timezone_set('GMT'); 
     7 
    68require_once "PHPUnit/Framework/TestCase.php"; 
    79require 'helpers.php'; 
    810 
    9 error_reporting(E_ALL); 
     11error_reporting(E_ALL | E_STRICT); 
    1012 
    1113