expectDeprecation('Test deprecation'); @trigger_error('Test deprecation', E_USER_DEPRECATED); } /** * Tests expectDeprecation in isolated test. * * @runInSeparateProcess * @preserveGlobalState disabled */ public function testExpectDeprecationInIsolation() { $this->expectDeprecation('Test isolated deprecation'); @trigger_error('Test isolated deprecation', E_USER_DEPRECATED); } }