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