1 | <?php |
||
19 | class TarantoolQueueTest extends QueueTest |
||
20 | { |
||
21 | use Performance; |
||
22 | use Concurrency; |
||
23 | |||
24 | protected $supportsExpiredEta = false; |
||
25 | |||
26 | protected function getUnsupportedItemTypes() |
||
30 | |||
31 | /** |
||
32 | * @dataProvider provideItemsOfUnsupportedTypes |
||
33 | * @expectedException PHPUnit_Framework_Exception |
||
34 | * @expectedExceptionMessageRegExp /could not be converted to string|Array to string conversion|unsupported field type/ |
||
35 | */ |
||
36 | public function testUnsupportedItemType($item) |
||
40 | |||
41 | /** |
||
42 | * @see https://github.com/tarantool/tarantool/issues/336 |
||
43 | */ |
||
44 | public function testItemsOfDifferentLength() |
||
51 | |||
52 | public static function createHandler(array $config) |
||
61 | } |
||
62 |