Passed
Branch master (366c16)
by William
03:30
created

GroupKeywordTest::testBuild()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 11
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 6
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 11
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace PhpMyAdmin\SqlParser\Tests\Components;
6
7
use PhpMyAdmin\SqlParser\Components\Expression;
8
use PhpMyAdmin\SqlParser\Components\GroupKeyword;
9
use PhpMyAdmin\SqlParser\Tests\TestCase;
10
11
class GroupKeywordTest extends TestCase
12
{
13
    public function testBuild()
14
    {
15
        $this->assertEquals(
16
            GroupKeyword::build(
17
                [
18
                    new GroupKeyword(new Expression('a')),
19
                    new GroupKeyword(new Expression('b')),
20
                    new GroupKeyword(new Expression('c')),
21
                ]
22
            ),
23
            'a, b, c'
24
        );
25
    }
26
}
27