1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
<?php
namespace PhpAmqpLib\Tests\Unit\Connection;
use PhpAmqpLib\Connection\AMQPSocketConnection;
use PHPUnit\Framework\Attributes\Test;
use PHPUnit\Framework\TestCase;
class AMQPSocketConnectionTest extends TestCase
{
#[Test]
public function channel_rpc_timeout_should_be_invalid_if_greater_than_read_write_timeout()
{
$this->expectException(\InvalidArgumentException::class);
$this->expectExceptionMessage('channel RPC timeout must not be greater than I/O read timeout');
new AMQPSocketConnection(
HOST,
PORT,
USER,
PASS,
VHOST,
false,
'AMQPLAIN',
null,
'en_US',
3.0,
null,
false,
0,
5.0
);
}
}
|