mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-10 15:50:57 +00:00
29 lines
648 B
PHP
29 lines
648 B
PHP
|
<?php
|
||
|
|
||
|
declare (strict_types = 1);
|
||
|
|
||
|
namespace tests\Phpml\Dataset;
|
||
|
|
||
|
use Phpml\Dataset\CsvDataset;
|
||
|
|
||
|
class CsvDatasetTest extends \PHPUnit_Framework_TestCase
|
||
|
{
|
||
|
/**
|
||
|
* @expectedException \Phpml\Exception\DatasetException
|
||
|
*/
|
||
|
public function testThrowExceptionOnMissingFile()
|
||
|
{
|
||
|
new CsvDataset('missingFile', 3);
|
||
|
}
|
||
|
|
||
|
public function testSampleCsvDataset()
|
||
|
{
|
||
|
$filePath = dirname(__FILE__).'/Resources/dataset.csv';
|
||
|
|
||
|
$dataset = new CsvDataset($filePath, 2, true);
|
||
|
|
||
|
$this->assertEquals(10, count($dataset->getSamples()));
|
||
|
$this->assertEquals(10, count($dataset->getLabels()));
|
||
|
}
|
||
|
}
|