mirror of
https://github.com/Llewellynvdm/php-ml.git
synced 2024-12-01 09:13:54 +00:00
653c7c772d
* upgrade to PHP 7.1 * bump travis and composer to PHP 7.1 * fix tests
19 lines
318 B
PHP
19 lines
318 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace tests\Phpml\NeuralNetwork\Node;
|
|
|
|
use Phpml\NeuralNetwork\Node\Bias;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class BiasTest extends TestCase
|
|
{
|
|
public function testBiasOutput(): void
|
|
{
|
|
$bias = new Bias();
|
|
|
|
$this->assertEquals(1.0, $bias->getOutput());
|
|
}
|
|
}
|