Mygento_Metrika_Test_Config_Layout   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 1
c 1
b 1
f 0
lcom 0
cbo 0
dl 0
loc 12
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A testFrontendLayout() 0 5 1
1
<?php
2
3
/**
4
 *
5
 * @category   Mygento
6
 * @package    Mygento_Metrika
7
 * @copyright  Copyright © 2015 NKS LLC. (http://www.mygento.ru)
8
 */
9
class Mygento_Metrika_Test_Config_Layout extends EcomDev_PHPUnit_Test_Case_Config
10
{
11
12
    /**
13
     * @test
14
     */
15
    public function testFrontendLayout()
16
    {
17
        $this->assertLayoutFileDefined('frontend', 'mygento/metrika.xml', 'metrika');
18
        $this->assertLayoutFileExists('frontend', 'mygento/metrika.xml');
19
    }
20
}
21