2017-08-28 11:00:24 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
2018-01-06 12:09:33 +00:00
|
|
|
namespace Phpml\Tests\Classification\DecisionTree;
|
2017-08-28 11:00:24 +00:00
|
|
|
|
|
|
|
use Phpml\Classification\DecisionTree\DecisionTreeLeaf;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
class DecisionTreeLeafTest extends TestCase
|
|
|
|
{
|
2017-11-14 20:21:23 +00:00
|
|
|
public function testHTMLOutput(): void
|
2017-08-28 11:00:24 +00:00
|
|
|
{
|
|
|
|
$leaf = new DecisionTreeLeaf();
|
|
|
|
$leaf->value = 1;
|
|
|
|
$leaf->columnIndex = 0;
|
|
|
|
|
|
|
|
$rightLeaf = new DecisionTreeLeaf();
|
|
|
|
$rightLeaf->value = '<= 2';
|
|
|
|
$rightLeaf->columnIndex = 1;
|
|
|
|
|
|
|
|
$leaf->rightLeaf = $rightLeaf;
|
|
|
|
|
|
|
|
$this->assertEquals('<table ><tr><td colspan=3 align=center style=\'border:1px solid;\'><b>col_0 =1</b><br>Gini: 0.00</td></tr><tr><td></td><td> </td><td valign=top align=right><b>No |</b><br><table ><tr><td colspan=3 align=center style=\'border:1px solid;\'><b>col_1 <= 2</b><br>Gini: 0.00</td></tr></table></td></tr></table>', $leaf->getHTML());
|
|
|
|
}
|
|
|
|
}
|