Completed
Push — master ( 3260ca...0c0ec5 )
by Christian
02:12
created

ListCommandTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testExecute() 0 5 1
1
<?php
2
3
namespace N98\Magento\Command\Integration;
4
5
use N98\Magento\Command\TestCase;
6
7
/**
8
 * Class ListCommandTest
9
 * @package N98\Magento\Command\Script\Repository
10
 */
11
class ListCommandTest extends TestCase
12
{
13
    public function testExecute()
14
    {
15
        $this->assertDisplayContains('integration:list', 'email');
16
        $this->assertDisplayContains('integration:list', 'endpoint');
17
    }
18
}
19