getMethod($name); // < PHP 8.1.0 $method->setAccessible(true); return $method; } public function testCleanCharacters() { $ical = new ICal(); $input = 'Test with emoji 🔴👍🏻'; self::assertSame( self::getMethod('cleanCharacters')->invokeArgs($ical, array($input)), $input ); } }