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