xref: /imagick/tests/255_getFeatures.phpt (revision 1fc179f4)
1--TEST--
2Test Imagick::getfeatures
3--SKIPIF--
4<?php
5
6require_once(dirname(__FILE__) . '/skipif.inc');
7
8checkClassMethods('Imagick', array('getfeatures'));
9
10
11?>
12--FILE--
13<?php
14
15$features = Imagick::getFeatures();
16
17if (!is_string($features)) {
18	echo "Features failed to return a string";
19}
20
21echo "Ok";
22
23?>
24--EXPECTF--
25Ok