mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-16 02:07:08 +00:00
28 lines
590 B
PHP
28 lines
590 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests\Phpml\NeuralNetwork\Node;
|
|
|
|
use Phpml\NeuralNetwork\Node\Input;
|
|
|
|
class InputTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
public function testInputInitialization()
|
|
{
|
|
$input = new Input();
|
|
$this->assertEquals(0.0, $input->getOutput());
|
|
|
|
$input = new Input($value = 9.6);
|
|
$this->assertEquals($value, $input->getOutput());
|
|
}
|
|
|
|
public function testSetInput()
|
|
{
|
|
$input = new Input();
|
|
$input->setInput($value = 6.9);
|
|
|
|
$this->assertEquals($value, $input->getOutput());
|
|
}
|
|
}
|