mirror of
https://github.com/macintoshplus/mongo-php-driver.git
synced 2026-03-25 17:32:28 +01:00
23 lines
472 B
PHP
23 lines
472 B
PHP
--TEST--
|
|
Javascript Code: invalid UTF-8
|
|
--DESCRIPTION--
|
|
Generated by scripts/convert-bson-corpus-tests.php
|
|
|
|
DO NOT EDIT THIS FILE
|
|
--FILE--
|
|
<?php
|
|
|
|
require_once __DIR__ . '/../utils/basic.inc';
|
|
|
|
$bson = hex2bin('0E0000000D610002000000E90000');
|
|
|
|
throws(function() use ($bson) {
|
|
var_dump(toPHP($bson));
|
|
}, 'MongoDB\Driver\Exception\UnexpectedValueException');
|
|
|
|
?>
|
|
===DONE===
|
|
<?php exit(0); ?>
|
|
--EXPECT--
|
|
OK: Got MongoDB\Driver\Exception\UnexpectedValueException
|
|
===DONE===
|