Completed
Push — master ( 294fc5...650d31 )
by AJ
04:35
created

SubdomainsInstallShellTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 2

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 6 1
A testMain() 0 3 1
1
<?php
2
/**
3
 * CakePHP Plugin : CakePHP Subdomain Routing
4
 * Copyright (c) Multidimension.al (http://multidimension.al)
5
 * Github : https://github.com/multidimension-al/cakephp-subdomains
6
 *
7
 * Licensed under The MIT License
8
 * For full copyright and license information, please see the LICENSE file
9
 * Redistributions of files must retain the above copyright notice.
10
 *
11
 * @copyright (c) Multidimension.al (http://multidimension.al)
12
 * @link      https://github.com/multidimension-al/cakephp-subdomains Github
13
 * @license   http://www.opensource.org/licenses/mit-license.php MIT License
14
 */
15
16
namespace Multidimensional\Subdomains\Tests\TestCase\Shell;
17
18
use Multidimensional\Subdomains\Shell\SubdomainsInstallShell;
19
20
use Cake\Core\Configure;
21
use Cake\Console\Shell;
22
23
use Cake\TestSuite\TestCase;
24
25
class SubdomainsInstallShellTest extends TestCase
26
{
27
28
    private $subdomains;
29
30
    public function setUp()
31
    {
32
        parent::setUp();
33
34
        $this->subdomains = new SubdomainsInstallShell();
35
    }
36
37
    public function testMain()
38
    {
39
    }
40
}
41