php-ml/tests/Phpml/NeuralNetwork/Node/InputTest.php

28 lines
590 B
PHP
Raw Normal View History

<?php
2016-11-20 21:53:17 +00:00
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());
}
}