Phpunit::arbitModulePhpunitDefintion
Class arbitModulePhpunitDefintion
Arbit Phpunit module definition Arbit Phpunit module definition
arbitBaseStruct
|
--arbitModuleDefintion
|
--arbitModulePhpunitDefintion
Author(s):
|
Version:
|
$Revision: 1692 $ |
|
License:
|
GPL |
Member Variables
|
protected array |
$caches
= array( 'phpunit_path' => array( 'path' => 'phpunit/', 'ttl' => arbitCache::INFINITE, ),)
Array with caches registered on initialization
Each cache must have a unique name, normally prefixed with the module identifier. time to live for the cache.
Array with caches registered on initialization
Each cache must have a unique name, normally prefixed with the module identifier. The definition array should at least contain a path and a time to live for the cache.
'name' => array(
'path' => 'dir/',
),
...
|
|
protected array |
$commands
= array( 'phpunit.runtests' => 'arbitModulePhpunitRuntestsCommand', )
List of command definitions of the module
Array containing command names and their assiciated classes in the module definition.
List of command definitions of the module
Array containing command names and their assiciated classes in the module definition.
array(
'mymodule.mycommand' => 'myModuleMyCommand',
...
)
|
|
protected array |
$properties
= array( 'autoload' => null, 'permissions' => array( ),'slots'=>array('sourceUpdated'=>'arbitModulePhpunitController::sourceUpdated',),'signals'=>array(),'templateDirectory'=>'templates/','controller'=>'arbitModulePhpunitController','path'=>__DIR__,// @TODO: This property may be subject to changes in name and structure 'menu'=>array('main'=>false,),)
Array containing the module structures properties.
Array containing the module structures properties.
Take a look at the property descriptions in the class level documentation for a more detailed description for each of the properties.
Do not add any properties to this array, which are not defined in this base class, because those might be used later on by the core. |
Inherited Member Variables
Inherited Methods
|