1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-26 20:15:02 +01:00
postgres/test/AbstractConnectionTest.php
2017-11-05 18:14:22 -06:00

10 lines
203 B
PHP

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