1--TEST--
2ReflectionExtension::getDependencies() method on an extension with one optional dependency
3--CREDITS--
4Felix De Vliegher <felix.devliegher@gmail.com>
5--FILE--
6<?php
7$standard = new ReflectionExtension('standard');
8var_dump($standard->getDependencies());
9?>
10==DONE==
11--EXPECTF--
12array(1) {
13  ["session"]=>
14  %s(8) "Optional"
15}
16==DONE==
17