php-ml/tests/Phpml/Dataset/Demo/GlassDatasetTest.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
514 B
PHP

<?php
declare(strict_types=1);
namespace tests\Phpml\Dataset\Demo;
use Phpml\Dataset\Demo\GlassDataset;
use PHPUnit\Framework\TestCase;
class GlassDatasetTest extends TestCase
{
public function testLoadingWineDataset(): void
{
$glass = new GlassDataset();
// whole dataset
$this->assertCount(214, $glass->getSamples());
$this->assertCount(214, $glass->getTargets());
// one sample features count
$this->assertCount(9, $glass->getSamples()[0]);
}
}