Files
librenms-librenms/tests/unit/ClientTest.php
T

20 lines
294 B
PHP
Raw Normal View History

2015-06-18 14:59:00 +02:00
<?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
);
}
}