simple code to show how to test controller in yaf with phpunit
.
├── application # project code directory
│ ├── Bootstrap.php
│ ├── controllers
│ │ ├── Base.php
│ │ ├── Index.php
│ │ └── User.php
│ ├── library
│ │ └── DB
│ │ └── Manager.php
│ └── models
│ └── User.php
├── conf
│ └── application.ini
├── index.php
├── README.md
└── test # test code directory
├── controller # test code for controller
│ ├── TestIndexController.php
│ └── TestUserController.php
├── init.xml # setup inital state for database
├── phpunit.xml # config for phpunit
└── TestController.php
add yaf.use_spl_autoload=1
to php.ini
for more information, refer to here
feel free to contact me at ruochen.xu at gmail