Changeset 4288

Show
Ignore:
Timestamp:
04/23/08 18:45:06 (15 months ago)
Author:
romanb
Message:

Added as testcase for #894. No success in reproducing the issue so far.

Location:
branches/0.11/tests
Files:
1 added
1 modified

Legend:

Unmodified
Added
Removed
  • branches/0.11/tests/run.php

    r4270 r4288  
    6161$tickets->addTestCase(new Doctrine_Ticket_929_TestCase()); 
    6262$tickets->addTestCase(new Doctrine_Ticket_963_TestCase()); 
     63$tickets->addTestCase(new Doctrine_Ticket_894_TestCase()); 
    6364$test->addTestCase($tickets); 
    6465 
     
    325326$test->addTestCase($unsorted); 
    326327 
     328$s = microtime(true); 
    327329$test->run(); 
     330$e = microtime(true); 
     331 
     332echo 'test run took: ' . ($e - $s) . ' seconds' . PHP_EOL; 
     333echo "peak memory usage: " . memory_get_peak_usage() / 1024 . "KB" . PHP_EOL;