InformationTest   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 33
Duplicated Lines 0 %

Coupling/Cohesion

Components 2
Dependencies 3

Importance

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

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 6 1
A testGetHeader() 0 6 1
A testGetPayoneUrl() 0 6 1
1
<?php
2
3
/**
4
 * PAYONE Magento 2 Connector is free software: you can redistribute it and/or modify
5
 * it under the terms of the GNU Lesser General Public License as published by
6
 * the Free Software Foundation, either version 3 of the License, or
7
 * (at your option) any later version.
8
 *
9
 * PAYONE Magento 2 Connector is distributed in the hope that it will be useful,
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12
 * GNU Lesser General Public License for more details.
13
 *
14
 * You should have received a copy of the GNU Lesser General Public License
15
 * along with PAYONE Magento 2 Connector. If not, see <http://www.gnu.org/licenses/>.
16
 *
17
 * PHP version 5
18
 *
19
 * @category  Payone
20
 * @package   Payone_Magento2_Plugin
21
 * @author    FATCHIP GmbH <[email protected]>
22
 * @copyright 2003 - 2017 Payone GmbH
23
 * @license   <http://www.gnu.org/licenses/> GNU Lesser General Public License
24
 * @link      http://www.payone.de
25
 */
26
27
namespace Payone\Core\Test\Unit\Block\Adminhtml;
28
29
use Payone\Core\Block\Adminhtml\Information as ClassToTest;
30
use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
31
use Payone\Core\Test\Unit\BaseTestCase;
32
use Payone\Core\Model\Test\PayoneObjectManager;
33
34
class InformationTest extends BaseTestCase
35
{
36
    /**
37
     * @var ClassToTest
38
     */
39
    private $classToTest;
40
41
    /**
42
     * @var ObjectManager|PayoneObjectManager
43
     */
44
    private $objectManager;
45
46
    protected function setUp()
47
    {
48
        $this->objectManager = $this->getObjectManager();
49
50
        $this->classToTest = $this->objectManager->getObject(ClassToTest::class);
51
    }
52
53
    public function testGetHeader()
54
    {
55
        $result = $this->classToTest->getHeader();
56
        $expected = 'Information';
57
        $this->assertEquals($expected, $result);
58
    }
59
60
    public function testGetPayoneUrl()
61
    {
62
        $result = $this->classToTest->getPayoneUrl();
63
        $expected = '//www.payone.de/embedded-sites/magento/information/';
64
        $this->assertEquals($expected, $result);
65
    }
66
}
67