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

ListCommandTest::testExecute()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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