Passed
Pull Request — master (#417)
by
unknown
03:28 queued 45s
created

GroupKeywordTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 23
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 11
c 1
b 0
f 0
dl 0
loc 23
rs 10
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A testBuildOne() 0 7 1
A testBuildMany() 0 11 1
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 testBuildOne(): void
14
    {
15
        $this->assertEquals(
16
            GroupKeyword::build(
17
                new GroupKeyword(new Expression('a'))
18
            ),
19
            'a'
20
        );
21
    }
22
23
    public function testBuildMany(): void
24
    {
25
        $this->assertEquals(
26
            GroupKeyword::build(
27
                [
28
                    new GroupKeyword(new Expression('a')),
29
                    new GroupKeyword(new Expression('b')),
30
                    new GroupKeyword(new Expression('c')),
31
                ]
32
            ),
33
            'a, b, c'
34
        );
35
    }
36
}
37