Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
23 | public function testRun() |
||
24 | { |
||
25 | $fcn = function() { sleep( 1 ); }; |
||
26 | $start = microtime( true ); |
||
27 | |||
28 | $object = new \Aimeos\MW\Process\Pcntl(); |
||
29 | $object->start( $fcn, [] )->start( $fcn, [] )->wait(); |
||
30 | |||
31 | $msec = ( microtime( true ) - $start ); |
||
32 | $this->assertGreaterThan( 1, $msec ); |
||
33 | $this->assertLessThan( 2, $msec ); |
||
34 | } |
||
35 | |||
47 |