. * * @filesource avion.php * @package controllers * Controleur de gestion des avions. */ include ('./application/libraries/Gvv_Controller.php'); class Terrains extends Gvv_Controller { // Tout le travail est fait par le parent protected $controller = 'terrains'; protected $model = 'terrains_model'; protected $modification_level = 'ca'; protected $rules = array (); /** * Test unitaire */ function test($format = "html") { // parent::test($format); $this->unit_test = TRUE; $this->load->library('unit_test'); $this->unit->run(true, true, "Tests $this->controller"); $this->tests_results($format); } }