Arquivos
php-fann/tests/fann_get_connection_rate_basic.phpt
2013-02-14 17:57:55 +00:00

12 linhas
222 B
PHP

--TEST--
Test function fann_get_connection_rate() by calling it with its expected arguments
--FILE--
<?php
$ann = fann_create_standard( 3, 3, 2, 1 );
var_dump( fann_get_connection_rate( $ann ) );
?>
--EXPECTF--
float(1)