mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-11-15 09:54:08 +00:00
653c7c772d
* upgrade to PHP 7.1 * bump travis and composer to PHP 7.1 * fix tests
29 lines
615 B
PHP
29 lines
615 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests\Phpml\NeuralNetwork\Node;
|
|
|
|
use Phpml\NeuralNetwork\Node\Input;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class InputTest extends TestCase
|
|
{
|
|
public function testInputInitialization(): void
|
|
{
|
|
$input = new Input();
|
|
$this->assertEquals(0.0, $input->getOutput());
|
|
|
|
$input = new Input($value = 9.6);
|
|
$this->assertEquals($value, $input->getOutput());
|
|
}
|
|
|
|
public function testSetInput(): void
|
|
{
|
|
$input = new Input();
|
|
$input->setInput($value = 6.9);
|
|
|
|
$this->assertEquals($value, $input->getOutput());
|
|
}
|
|
}
|