mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-12-03 10:28:24 +00:00
946fbbc521
* tests: update to PHPUnit 6.0 with rector * [cs] clean empty docs * composer: bump to PHPUnit 6.4 * tests: use class references over strings * cleanup
58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests\Phpml\NeuralNetwork;
|
|
|
|
use Phpml\Exception\InvalidArgumentException;
|
|
use Phpml\NeuralNetwork\Layer;
|
|
use Phpml\NeuralNetwork\Node\Bias;
|
|
use Phpml\NeuralNetwork\Node\Neuron;
|
|
use PHPUnit\Framework\TestCase;
|
|
use stdClass;
|
|
|
|
class LayerTest extends TestCase
|
|
{
|
|
public function testLayerInitialization(): void
|
|
{
|
|
$layer = new Layer();
|
|
|
|
$this->assertEquals([], $layer->getNodes());
|
|
}
|
|
|
|
public function testLayerInitializationWithDefaultNodesType(): void
|
|
{
|
|
$layer = new Layer($number = 5);
|
|
|
|
$this->assertCount($number, $layer->getNodes());
|
|
foreach ($layer->getNodes() as $node) {
|
|
$this->assertInstanceOf(Neuron::class, $node);
|
|
}
|
|
}
|
|
|
|
public function testLayerInitializationWithExplicitNodesType(): void
|
|
{
|
|
$layer = new Layer($number = 5, $class = Bias::class);
|
|
|
|
$this->assertCount($number, $layer->getNodes());
|
|
foreach ($layer->getNodes() as $node) {
|
|
$this->assertInstanceOf($class, $node);
|
|
}
|
|
}
|
|
|
|
public function testThrowExceptionOnInvalidNodeClass(): void
|
|
{
|
|
$this->expectException(InvalidArgumentException::class);
|
|
new Layer(1, stdClass::class);
|
|
}
|
|
|
|
public function testAddNodesToLayer(): void
|
|
{
|
|
$layer = new Layer();
|
|
$layer->addNode($node1 = new Neuron());
|
|
$layer->addNode($node2 = new Neuron());
|
|
|
|
$this->assertEquals([$node1, $node2], $layer->getNodes());
|
|
}
|
|
}
|