pdlib/tests/cnn_face_detection_ctor_error.phpt

16 lines
326 B
Plaintext
Raw Permalink Normal View History

--TEST--
Testing CnnFaceDetection constructor without arguments
--SKIPIF--
<?php if (!extension_loaded("pdlib")) print "skip"; ?>
--FILE--
<?php
try {
new CnnFaceDetection();
} catch (Error $e) {
var_dump($e->getMessage());
}
?>
2019-11-29 06:14:34 +08:00
--EXPECTF--
string(68) "CnnFaceDetection::__construct() expects exactly 1 parameter, 0 given"