1--TEST--
2ReflectionExtension::isPersistent()
3--FILE--
4<?php
5$obj = new ReflectionExtension('reflection');
6var_dump($obj->isPersistent());
7?>
8--EXPECT--
9bool(true)
10