1
0
mirror of https://github.com/danog/postgres.git synced 2024-12-04 02:17:44 +01:00
postgres/test/AbstractConnectionTest.php

10 lines
203 B
PHP
Raw Normal View History

2017-11-06 01:14:22 +01:00
<?php
namespace Amp\Postgres\Test;
abstract class AbstractConnectionTest extends AbstractLinkTest {
public function testIsAlive() {
$this->assertTrue($this->connection->isAlive());
}
}