16 lines
319 B
PHP
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"
|
|
|