mirror of
https://github.com/danog/postgres.git
synced 2024-11-26 20:15:02 +01:00
10 lines
203 B
PHP
10 lines
203 B
PHP
<?php
|
|
|
|
namespace Amp\Postgres\Test;
|
|
|
|
abstract class AbstractConnectionTest extends AbstractLinkTest {
|
|
public function testIsAlive() {
|
|
$this->assertTrue($this->connection->isAlive());
|
|
}
|
|
}
|