ultimix
unit_tests.php
Go to the documentation of this file.
1 <?php
2 
3  /*
4  * This source code is a part of the Ultimix Project.
5  * It is distributed under BSD license. All other third side source code (like tinyMCE) is distributed under
6  * it's own license wich could be found from the corresponding files or sources.
7  * This source code is provided "as is" without any warranties or garanties.
8  *
9  * Have a nice day!
10  *
11  * @url http://ultimix.sorceforge.net
12  *
13  * @author Alexey "gdever" Dodonov
14  */
15 
26  class unit_tests{
27 
38  var $ErrorLogAccess = false;
39  var $ErrorLogView = false;
40  var $Options = false;
41 
52  function set_up()
53  {
54  $this->ErrorLogAccess = get_package( 'error_log::error_log_access' , 'last' , __FILE__ );
55  $this->ErrorLogView = get_package( 'error_log::error_log_view' , 'last' , __FILE__ );
56  $this->Options = get_package_object( 'settings::settings' , 'last' , __FILE__ );
57  }
58 
59  //TODO: create unit-test with simple create form view
60  //TODO: create unit-test with simple update form view
61  //TODO: create unit-test with simple copy form view
62 
63  //TODO: create unit-test with simple create controller
64  //TODO: create unit-test with simple update controller
65  //TODO: create unit-test with simple delete controller
66  }
67 
68 ?>