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

FunctionCallTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A testBuildArrayObj() 0 4 1
A testBuildArray() 0 4 1
1
<?php
2
3
declare(strict_types=1);
4
5
namespace PhpMyAdmin\SqlParser\Tests\Components;
6
7
use PhpMyAdmin\SqlParser\Components\ArrayObj;
8
use PhpMyAdmin\SqlParser\Components\FunctionCall;
9
use PhpMyAdmin\SqlParser\Tests\TestCase;
10
11
class FunctionCallTest extends TestCase
12
{
13
    public function testBuildArray()
14
    {
15
        $component = new FunctionCall('func', ['a', 'b']);
16
        $this->assertEquals('func(a, b)', FunctionCall::build($component));
17
    }
18
19
    public function testBuildArrayObj()
20
    {
21
        $component = new FunctionCall('func', new ArrayObj(['a', 'b']));
22
        $this->assertEquals('func(a, b)', FunctionCall::build($component));
23
    }
24
}
25