SubdomainsInstallShellTest::setUp()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
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 Cake\Console\Shell;
19
use Cake\Core\Configure;
20
use Cake\TestSuite\TestCase;
21
use Multidimensional\Subdomains\Shell\SubdomainsInstallShell;
22
23
class SubdomainsInstallShellTest extends TestCase
24
{
25
26
    private $subdomains;
27
28
    /**
29
     * @return void
30
     */
31
    public function setUp()
32
    {
33
        parent::setUp();
34
35
        $this->subdomains = new SubdomainsInstallShell();
36
    }
37
38
    /**
39
     * @return void
40
     */
41
    public function testMain()
42
    {
43
        $this->markTestIncomplete('Not implemented yet.');
44
    }
45
}
46