pdlib/tests/face_landmark_detection_ctor_error.phpt

21 lines
510 B
Plaintext
Raw Normal View History

--TEST--
Testing FaceLandmarkDetection constructor without arguments
--SKIPIF--
<?php if (!extension_loaded("pdlib")) print "skip"; ?>
--FILE--
<?php
try {
new FaceLandmarkDetection();
} catch (Error $e) {
var_dump($e->getMessage());
}
try {
new FaceLandmarkDetection("non-existent file");
} catch (Exception $e) {
var_dump($e->getMessage());
}
?>
2019-11-29 06:14:34 +08:00
--EXPECTF--
string(73) "FaceLandmarkDetection::__construct() expects exactly 1 parameter, 0 given"
2019-11-29 06:14:34 +08:00
string(45) "Unable to open non-existent file for reading."