Hello,
How to integrate PHPUnit with php pro custom php framework?
http://www.phpro.org/tutorials/Model-Vi ... r-MVC.html
Does it matters if change our framework ?
How to integrate PHPUnit with php pro custom php framework
Moderator: General Moderators
Re: How to integrate PHPUnit with php pro custom php framewo
Answer: You don't "integrate"
There is the model, view & controller. The view/controller depend on the framework
The model should just be plain objects you write that "do work".
You unit test the model, not the view or controller.
The view/controller are "presentation" and are tested with a tool like Selenium.
There is the model, view & controller. The view/controller depend on the framework
The model should just be plain objects you write that "do work".
You unit test the model, not the view or controller.
The view/controller are "presentation" and are tested with a tool like Selenium.