AllTestsTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 4
dl 0
loc 8
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A suite() 0 6 1
1
<?php
2
3
namespace App\Test\TestCase;
4
5
use Cake\TestSuite\TestSuite;
6
7
class AllTestsTest extends TestSuite
8
{
9
    public static function suite(): TestSuite
10
    {
11
        $suite = new TestSuite('All tests');
12
        $suite->addTestDirectoryRecursive(TESTS . 'TestCase');
13
14
        return $suite;
15
    }
16
}
17