parallel-functions/test/ParallelTest.php

21 lines
504 B
PHP
Raw Normal View History

2017-12-14 02:29:19 +01:00
<?php
namespace Amp\ParallelFunctions\Test;
use Amp\PHPUnit\TestCase;
use function Amp\ParallelFunctions\parallel;
class ParallelTest extends TestCase {
/**
* @expectedException \Error
2017-12-14 17:33:41 +01:00
* @expectedExceptionMessage Unsupported callable: Serialization of 'class@anonymous' is not allowed
2017-12-14 02:29:19 +01:00
*/
public function testUnserializableClosure() {
2017-12-14 08:31:15 +01:00
$unserializable = new class {
};
2017-12-14 17:33:41 +01:00
parallel(function () use ($unserializable) {
2017-12-14 02:29:19 +01:00
return 1;
});
}
}