[core] test for bool_escape(null) == false

This commit is contained in:
Shish 2024-06-19 15:12:07 +01:00 committed by Shish
parent 63c6f9d2ac
commit 069fb92f54

View file

@ -46,6 +46,8 @@ class PolyfillsTest extends TestCase
$this->assertTrue(bool_escape(true));
$this->assertFalse(bool_escape(false));
$this->assertFalse(bool_escape(null));
$this->assertTrue(bool_escape("true"));
$this->assertFalse(bool_escape("false"));