1..32 # ->initialize() ok 1 - ->initialize() sets the culture to en by default ok 2 - ->initialize() sets the culture to the value of default_culture if available ok 3 - ->initialize() reads the culture from the session data if available ok 4 - ->initialize() serializes the culture to the session data # ->setCulture() ->getCulture() ok 5 - ->setCulture() changes the current user culture # ->setFlash() ->getFlash() ->hasFlash() ok 6 - ->setFlash() sets a flash variable ok 7 - ->hasFlash() returns true if the flash variable exists ok 8 - ->getFlash() returns a flash previously set ok 9 - ->hasFlash() returns true if the flash variable exists ok 10 - Flashes are automatically removed after the next request ok 11 - ->hasFlash() returns true if the flash variable exists # Array access for user attributes ok 12 - ->offsetExists() returns true if user attribute exists ok 13 - ->offsetExists() returns false if user attribute does not exist ok 14 - ->offsetGet() returns false if attribute does not exist ok 15 - ->offsetGet() returns attribute by name ok 16 - ->offsetSet() sets attribute by name ok 17 - ->offsetUnset() unsets attribute by name # Attribute holder proxy ok 18 - ->getAttributeHolder() returns a parameter holder instance ok 19 - ->hasAttribute() returns false if the attribute does not exist ok 20 - ->getAttribute() returns the default value if attribute does not exist ok 21 - ->hasAttribute() returns true if the attribute exists ok 22 - ->hasAttribute() is a proxy method ok 23 - ->getAttribute() returns the value of the attribute ok 24 - ->getAttribute() is a proxy method ok 25 - ->getAttribute() does not return the default value if the attribute exists ok 26 - ->hasAttribute() takes a namespace as its second parameter ok 27 - ->hasAttribute() takes a namespace as its second parameter ok 28 - ->getAttribute() takes a namespace as its third parameter ok 29 - ->setAttribute() is a proxy method ok 30 - ->setAttribute() is a proxy method # New methods via sfEventDispatcher ok 31 - __call() accepts new methods via sfEventDispatcher ok 32 - __call() throws an exception if the method does not exist as a sfEventDispatcher listener # Looks like everything went fine.