php-ml/tests/Phpml/Dataset/Demo/IrisDatasetTest.php
Tomáš Votruba 653c7c772d Upgrade to PHP 7.1 (#150)
* upgrade to PHP 7.1

* bump travis and composer to PHP 7.1

* fix tests
2017-11-14 21:21:23 +01:00

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]);
}
}