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

12 lines
207 B
PHP
Raw Normal View History

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