HeadersTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 21
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A willReturnValidHeaders() 0 10 1
1
<?php
2
declare(strict_types = 1);
3
/**
4
 *
5
 * Copyright (C) 2018  Ross Mitchell
6
 *
7
 * This file is part of RossMitchell/UpdateCloudFlare.
8
 *
9
 * RossMitchell/UpdateCloudFlare is free software: you can redistribute
10
 * it and/or modify it under the terms of the GNU General Public License
11
 * as published by the Free Software Foundation, either version 3 of the
12
 * License, or (at your option) any later version.
13
 *
14
 * This program is distributed in the hope that it will be useful,
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17
 * GNU General Public License for more details.
18
 *
19
 * You should have received a copy of the GNU General Public License
20
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21
 */
22
23
namespace RossMitchell\UpdateCloudFlare\Tests\Data;
24
25
use RossMitchell\UpdateCloudFlare\Data\Headers;
26
use RossMitchell\UpdateCloudFlare\Tests\AbstractTestClass;
27
28
/**
29
 * Class HeadersTest
30
 * @testdox RossMitchell\UpdateCloudFlare\Data\Headers
31
 * @package RossMitchell\UpdateCloudFlare\Tests\Data
32
 */
33
class HeadersTest extends AbstractTestClass
34
{
35
    /**
36
     * @Inject
37
     * @var Headers
38
     */
39
    private $headers;
40
41
    /**
42
     * @test
43
     */
44
    public function willReturnValidHeaders(): void
45
    {
46
        $headers         = $this->headers;
47
        $expectedHeaders = [
48
            'X-Auth-Email: [email protected]',
49
            'X-Auth-Key: 123456789',
50
            'Content-Type: application/json',
51
        ];
52
53
        $this->assertEquals($expectedHeaders, $headers->getHeadersArray());
54
    }
55
}
56