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

12 lines
201 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()
{
2020-10-11 18:49:15 +02:00
$this->assertTrue($this->link->isAlive());
2017-11-06 01:14:22 +01:00
}
}