Completed
Push — master ( a04aa9...a7d02a )
by Ivannis Suárez
02:48
created

SelectorInterfaceTestCase::testClass()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 7
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
1
<?php
2
/**
3
 * This file is part of the Cubiche package.
4
 *
5
 * Copyright (c) Cubiche
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
namespace Cubiche\Core\Selector\Tests\Units;
11
12
use Cubiche\Core\Selector\SelectorInterface;
13
use Cubiche\Core\Visitor\Tests\Units\VisiteeInterfaceTestCase;
14
15
/**
16
 * Selector Interface Test Case Class.
17
 *
18
 * @author Karel Osorio Ramírez <[email protected]>
19
 */
20
abstract class SelectorInterfaceTestCase extends VisiteeInterfaceTestCase
21
{
22
    /**
23
     * Test class.
24
     */
25
    public function testClass()
26
    {
27
        $this
28
            ->testedClass
29
                ->implements(SelectorInterface::class)
30
        ;
31
    }
32
}
33