<?php
/**
* TestIncludes
*
* PHP version 5
*
* LICENSE: This source file is subject to LGPL license
* that is available through the world-wide-web at the following URI:
* http://www.gnu.org/copyleft/lesser.html
*
* @author Antonio Alcorn
* @author Giovanni Capalbo
* @author Sylvia Hristakeva
* @author Kumud Nepal
* @author Ernel Wint
* @copyright Lanka Software Foundation - http://www.opensource.lk
* @copyright Trinity Humanitarian-FOSS Project - http://www.cs.trincoll.edu/hfoss
* @package sahana
* @subpackage vm
* @tutorial
* @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General
* Public License (LGPL)
*/
// include our own classes.
require_once('../lib/Constants.php');
require_once('../model/Model.php');
require_once('../model/dao.php');
require_once('../view/View.php');
require_once('../model/Volunteer.php');
require_once('../view/VolunteerView.php');
require_once('../controller/Controller.php');
require_once('../controller/VolunteerController.php');
require_once('../view/ProjectView.php');
require_once('../controller/ProjectController.php');
require_once('../model/Project.php');
require_once('../tree/tree.inc');
require_once('../tree/node.inc');
require_once('../whiz/Whiz.php');
require_once('../lib/vm_validate.inc');
?>