Is there a possibility to unittest a Zend_Json_Rpc server?
Or should I much rather unit test the underlying class that the Json server wraps?
Is there a possibility to unittest a Zend_Json_Rpc server? Or should I much rather
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you are unit-testing, you should not be testing a combinaison of classes — but only one class : the one that does the work — which is your class.
Zend_Json_Rpcis part of a framework ; as such, you are not the one who should unit-test it : it’s already tested by the Framework’s test suite.