1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-26 20:15:02 +01:00
postgres/test/AbstractConnectionTest.php
2018-07-01 12:33:12 -05:00

12 lines
207 B
PHP

<?php
namespace Amp\Postgres\Test;
abstract class AbstractConnectionTest extends AbstractLinkTest
{
public function testIsAlive()
{
$this->assertTrue($this->connection->isAlive());
}
}