]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - tests/PHPUnit/Tests/_files/SleepTest.php
Added unit tests.
[Github/sugarcrm.git] / tests / PHPUnit / Tests / _files / SleepTest.php
1 <?php
2 require_once 'PHPUnit/Extensions/PerformanceTestCase.php';
3
4 class SleepTest extends PHPUnit_Extensions_PerformanceTestCase
5 {
6     public function testSleepTwoSeconds()
7     {
8         sleep(2);
9     }
10 }
11 ?>