ResultSet::getPoints empty parameters

This commit is contained in:
danibrutal
2015-06-18 14:59:00 +02:00
parent 7d91bb0519
commit 033d593d51
3 changed files with 44 additions and 3 deletions
+17
View File
@@ -40,6 +40,23 @@ EOD;
new ResultSet($errorResult);
}
/**
* We can get points from measurement
*/
public function testGetPoints()
{
$expectedNumberOfPoints = 3;
$points = $this->resultSet->getPoints();
$this->assertTrue(
is_array($points)
);
$this->assertCount($expectedNumberOfPoints, $points);
}
/**
* We can get points from measurement
*/