1
0
mirror of https://github.com/php/php-src.git synced 2026-04-24 08:28:26 +02:00
Files
archived-php-src/Zend/tests/assert/expect_019.phpt
T

19 lines
287 B
PHP

--TEST--
test assertions in namespace (assertions completely disabled)
--INI--
zend.assertions=-1
--FILE--
<?php
namespace Foo;
var_dump(\assert(false));
var_dump(\assert(true));
var_dump(assert(false));
var_dump(assert(true));
?>
--EXPECT--
bool(true)
bool(true)
bool(true)
bool(true)