--TEST-- ReflectionClass::__toString() - verify 'inherits', 'overwrites' and 'prototype' parts of method representation with private methods --CREDITS-- Robin Fernandes Steve Seear --FILE-- --EXPECTF-- ----( Reflection class A: )---- Class [ class A ] { @@ %s 2-4 - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [0] { } - Methods [1] { Method [ private method f ] { @@ %s 3 - 3 } } } ----( Reflection class B: )---- Class [ class B extends A ] { @@ %s 5-7 - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [0] { } - Methods [1] { Method [ private method f ] { @@ %s 6 - 6 } } } ----( Reflection class C: )---- Class [ class C extends B ] { @@ %s 8-10 - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [0] { } - Methods [0] { } } ----( Reflection class D: )---- Class [ class D extends C ] { @@ %s 11-13 - Constants [0] { } - Static properties [0] { } - Static methods [0] { } - Properties [0] { } - Methods [1] { Method [ private method f ] { @@ %s 12 - 12 } } }