php-ml/tests/Phpml/NeuralNetwork/ActivationFunction/BinaryStepTest.php
Tomáš Votruba 653c7c772d Upgrade to PHP 7.1 (#150)
* upgrade to PHP 7.1

* bump travis and composer to PHP 7.1

* fix tests
2017-11-14 21:21:23 +01:00

34 lines
659 B
PHP

<?php
declare(strict_types=1);
namespace tests\Phpml\NeuralNetwork\ActivationFunction;
use Phpml\NeuralNetwork\ActivationFunction\BinaryStep;
use PHPUnit\Framework\TestCase;
class BinaryStepTest extends TestCase
{
/**
* @dataProvider binaryStepProvider
*/
public function testBinaryStepActivationFunction($expected, $value): void
{
$binaryStep = new BinaryStep();
$this->assertEquals($expected, $binaryStep->compute($value));
}
/**
* @return array
*/
public function binaryStepProvider()
{
return [
[1, 1],
[1, 0],
[0, -0.1],
];
}
}