1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-02 09:27:54 +01:00
postgres/test/AbstractConnectionTest.php
2020-10-11 11:49:15 -05:00

12 lines
201 B
PHP

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