1
0
Fork 0
mirror of synced 2024-07-05 22:51:24 +12:00

chore(tests): add test case for value ending in =

This commit is contained in:
megatank58 2022-10-17 16:02:24 +05:30 committed by GitHub
parent d1e9e7b396
commit 819ba45836
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -28,6 +28,7 @@ class EnvTest extends TestCase
$this->assertEquals('value1', $this->object->getVar('_APP_X'));
$this->assertEquals('value2', $this->object->getVar('_APP_Y'));
$this->assertEquals('value3', $this->object->getVar('_APP_Z'));
$this->assertEquals('value5=', $this->object->getVar('_APP_W'));
$this->assertEquals('value4', $this->object->getVar('_APP_TEST'));
}