Arquivos
php-fann/tests/fann_destroy_basic.phpt
2013-02-11 19:27:51 +00:00

11 linhas
196 B
PHP

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