I am using SimpleTest API and PHPUnit Test API. Does any of them support automated bug logging support . And if not then how can I will provide this feature ?
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.
PHPUnit can, for example, interact with issues in
Trac( https://github.com/sebastianbergmann/phpunit-ticketlistener-trac )GitHub( https://github.com/sebastianbergmann/phpunit-ticketlistener-github )Buiding one that fits your propose sure is possible.
Also there are other ways to make PHPUnit tell you what is happening like
Test listeners. Where you can really act on everything PHPUnit does.The xml or json output. That you can parse and act on it accordingly