mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-25 14:27:34 +00:00
653c7c772d
* upgrade to PHP 7.1 * bump travis and composer to PHP 7.1 * fix tests
24 lines
507 B
PHP
24 lines
507 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests\Phpml\Dataset\Demo;
|
|
|
|
use Phpml\Dataset\Demo\IrisDataset;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class IrisDatasetTest extends TestCase
|
|
{
|
|
public function testLoadingIrisDataset(): void
|
|
{
|
|
$iris = new IrisDataset();
|
|
|
|
// whole dataset
|
|
$this->assertCount(150, $iris->getSamples());
|
|
$this->assertCount(150, $iris->getTargets());
|
|
|
|
// one sample features count
|
|
$this->assertCount(4, $iris->getSamples()[0]);
|
|
}
|
|
}
|