Adding unit tests

This commit is contained in:
Daniel Martinez
2015-06-17 15:35:42 +02:00
parent d9c2ebde15
commit 0986f43bdd
4 changed files with 49 additions and 2 deletions
+12
View File
@@ -0,0 +1,12 @@
<?php
namespace Leaseweb\InfluxDB\Test;
class ResultSetTest extends \PHPUnit_Framework_TestCase
{
public function testResultSetFromRaw()
{
$this->assertTrue(
false
);
}
}