Completed
Push — develop ( d0e808...84afed )
by
unknown
17s queued 14s
created

RemoveSignerTest   A

Complexity

Total Complexity 2

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 2
eloc 7
dl 0
loc 21
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A testSuccess() 0 13 1
A setUp() 0 4 1
1
<?php
2
namespace Dokobit\Gateway\Tests\Integration\Signing;
3
4
use Dokobit\Gateway\Query\Signing\RemoveSigner;
5
use Dokobit\Gateway\Result\Signing\RemoveSignerResult;
6
use Dokobit\Gateway\Tests\Integration\TestCase;
7
8
class RemoveSignerTest extends TestCase
9
{
10
    protected function setUp(): void
11
    {
12
        parent::setUp();
13
        $this->createSigning();
14
    }
15
16
    public function testSuccess()
17
    {
18
        /** @var RemoveSignerResult $result */
19
        $result = $this->client->get(new RemoveSigner(
20
            $this->signingToken,
21
            [
22
                [
23
                    'id' => self::SIGNER1_ID,
24
                ],
25
            ]
26
        ));
27
28
        $this->assertSame('ok', $result->getStatus());
29
    }
30
}
31