testFrontendLayout()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 1 Features 0
Metric Value
c 1
b 1
f 0
dl 0
loc 5
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
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