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

AllLampagerTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 4
c 1
b 0
f 0
dl 0
loc 7
rs 10
wmc 1

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