1
0
mirror of https://github.com/php/php-src.git synced 2026-03-29 03:32:20 +02:00
Files
archived-php-src/ext/hash/tests/new-context.phpt
Gabriel Caruso ded3d984c6 Use EXPECT instead of EXPECTF when possible
EXPECTF logic in run-tests.php is considerable, so let's avoid it.
2018-02-20 21:53:48 +01:00

15 lines
308 B
PHP

--TEST--
Attempt to instantiate a HashContext directly
--SKIPIF--
<?php if (!extension_loaded('hash')) echo 'skip';
--FILE--
<?php
try {
new HashContext;
} catch (Error $e) {
echo "Exception: {$e->getMessage()}\n";
}
--EXPECT--
Exception: Call to private HashContext::__construct() from invalid context