[fw-general] Re: Unit testing Zend_Forms

2010-04-06 Thread dmitrybelyakov
Hi, Steve. I just wonder if you have found any good ways of testing Zend_Form classes? Dmitry. -- View this message in context: http://n4.nabble.com/Unit-testing-Zend-Forms-tp999542p1753068.html Sent from the Zend Framework mailing list archive at Nabble.com.

Re: [fw-general] Re: Unit testing Zend_Forms

2010-04-06 Thread A.J. Brown
You should only need to unit test your forms if they are adding functionality to Zend_Form. The built in Decorators, Filters, Validators, etc should already be tested. If you're using a custom Decorator, Filter, Validator, or View, you should test those separately from the form. With that said,