GemsTracker

GEneric Medical Survey Tracker

User Tools

Site Tools


devzone:testing:project

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Next revision
Previous revision
devzone:testing:project [2012/10/02 11:50]
menno created
— (current)
Line 1: Line 1:
-====== Testing your own project ====== 
-The GemsTracker library will try to implement more and more testing to help provide more stable code and easier refactoring. To implement testing at project level, you will need some extra'​s on top of the normal GemsTracker installation. 
  
-===== Requirements ===== 
-A working PHPUnit, for example installed via PEAR. 
-Additional GemsTracker library files from the test folder. Please make sure that library and test files have the same version number. 
- 
-===== Setup ===== 
-Add a folder ''​\test''​ to your project root and copy the additional files you downloaded from the test folder. Your project root will look something like this: 
-  \application 
-  \htdocs 
-  \library 
-  \test 
-  \var 
-And more specific, the test folder will look like this: 
-  \test\classes\ProjectName 
-  \test\library\Gems 
-  \test\library\Zend 
-To be able to run the tests, you will need to tell PHPunit to use a bootstrap file that will setup the include path and register autoloaders. A generic helper file is present in the ''​\test\library''​ folder by the name ''​project-bootstrap.php''​. For default setups this will be enough, and the only thing left to do is create your own bootstrap file in the test folder: 
-<file php bootstrap.php>​ 
-define('​GEMS_PROJECT_NAME',​ '​ProjectName'​);​ 
-require_once '​library/​project-bootstrap.php';​ 
-</​file>​ 
devzone/testing/project.1349171435.txt.gz · Last modified: 2020/03/12 12:08 (external edit)