mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
20 lines
294 B
PHP
20 lines
294 B
PHP
|
|
<?php
|
||
|
|
|
||
|
|
namespace Leaseweb\InfluxDB\Test;
|
||
|
|
|
||
|
|
use Leaseweb\InfluxDB\Client;
|
||
|
|
|
||
|
|
class ClientTest extends \PHPUnit_Framework_TestCase
|
||
|
|
{
|
||
|
|
|
||
|
|
/** @var Client $client */
|
||
|
|
protected $client = null;
|
||
|
|
|
||
|
|
|
||
|
|
public function testBaseURl()
|
||
|
|
{
|
||
|
|
$this->assertTrue(
|
||
|
|
true
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|