16 lines
395 B
PHP
16 lines
395 B
PHP
--TEST--
|
|
Testing FaceRecognition constructor without arguments
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("pdlib")) print "skip"; ?>
|
|
--FILE--
|
|
<?php
|
|
try {
|
|
new FaceRecognition();
|
|
} catch (Exception $e) {
|
|
var_dump($e->getMessage());
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
Warning: FaceRecognition::__construct() expects exactly 1 parameter, 0 given in %s on line 3
|
|
string(43) "Unable to parse face_recognition_model_path"
|