Passed
Pull Request — master (#7)
by Chito
02:51
created

AllLampagerTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 9
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 9
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A suite() 0 5 1
1
<?php
2
3
App::uses('CakeTestSuite', 'TestSuite');
4
5
class AllLampagerTest extends CakeTestSuite
6
{
7
    public static function suite()
8
    {
9
        $suite = new CakeTestSuite('All Lampager test');
10
        $suite->addTestDirectoryRecursive(CakePlugin::path('Lampager') . 'Test' . DS . 'Case');
11
        return $suite;
12
    }
13
}
14