mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-05 04:57:52 +00:00
a348111e97
* tests: update to PHPUnit 6.0 with rector * fix namespaces on tests * composer + tests: use standard test namespace naming * update travis * resolve conflict * phpstan lvl 2 * phpstan lvl 3 * phpstan lvl 4 * phpstan lvl 5 * phpstan lvl 6 * phpstan lvl 7 * level max * resolve conflict * [cs] clean empty docs * composer: bump to PHPUnit 6.4 * cleanup * composer + travis: add phpstan * phpstan lvl 1 * composer: update dev deps * phpstan fixes * update Contributing with new tools * docs: link fixes, PHP version update * composer: drop php-cs-fixer, cs already handled by ecs * ecs: add old set rules * [cs] apply rest of rules
58 lines
1.5 KiB
PHP
58 lines
1.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Phpml\Tests\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());
|
|
}
|
|
}
|