pdlib/tests/cnn_face_detection_ctor_error.phpt
2020-09-30 09:46:46 +02:00

16 lines
319 B
PHP

--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());
}
?>
--EXPECTF--
string(%d) "CnnFaceDetection::__construct() expects exactly 1 %s, 0 given"