1..36 # ->initialize() ok 1 - ->initialize() takes a sfEventDispatcher object as its first argument ok 2 - ->initialize() takes an array of parameters as its second argument ok 3 - ->getOptions() returns options for request instance # ->getMethod() ->setMethod() ok 4 - ->getMethod() returns the current request method ok 5 - ->setMethod() throws a sfException if the method is not valid # ->extractParameters() ok 6 - ->extractParameters() returns parameters ok 7 - ->extractParameters() returns parameters for keys in its first parameter ok 8 - ->extractParameters() returns parameters for keys in its first parameter # Array access for request parameters ok 9 - ->offsetExists() returns true if request parameter exists ok 10 - ->offsetExists() returns false if request parameter does not exist ok 11 - ->offsetGet() returns false if parameter does not exist ok 12 - ->offsetGet() returns parameter by name ok 13 - ->offsetSet() sets parameter by name ok 14 - ->offsetUnset() unsets parameter by name # Parameter holder proxy ok 15 - ->getParameterHolder() returns a parameter holder instance ok 16 - ->hasParameter() returns false if the parameter does not exist ok 17 - ->getParameter() returns the default value if parameter does not exist ok 18 - ->hasParameter() returns true if the parameter exists ok 19 - ->hasParameter() is a proxy method ok 20 - ->getParameter() returns the value of the parameter ok 21 - ->getParameter() is a proxy method ok 22 - ->getParameter() does not return the default value if the parameter exists ok 23 - ->setParameter() is a proxy method ok 24 - ->setParameter() is a proxy method # Attribute holder proxy ok 25 - ->getAttributeHolder() returns a parameter holder instance ok 26 - ->hasAttribute() returns false if the attribute does not exist ok 27 - ->getAttribute() returns the default value if attribute does not exist ok 28 - ->hasAttribute() returns true if the attribute exists ok 29 - ->hasAttribute() is a proxy method ok 30 - ->getAttribute() returns the value of the attribute ok 31 - ->getAttribute() is a proxy method ok 32 - ->getAttribute() does not return the default value if the attribute exists ok 33 - ->setAttribute() is a proxy method ok 34 - ->setAttribute() is a proxy method # New methods via sfEventDispatcher ok 35 - __call() accepts new methods via sfEventDispatcher ok 36 - __call() throws an exception if the method does not exist as a sfEventDispatcher listener # Looks like everything went fine.