Passed
Push — master ( 542807...000b7f )
by Hector Luis
11:24
created

AuthTest::testGenerateClients()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
c 1
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
1
<?php
2
declare(strict_types=1);
3
4
/**
5
 * Test Suite
6
 * @category    Ticaje
7
 * @package     Ticaje_Connector
8
 * @author      Hector Luis Barrientos <[email protected]>
9
 */
10
11
namespace Ticaje\Connector\Test\Unit\Gateway\Authenticator;
12
13
use Ticaje\Connector\Test\Unit\BaseTest;
14
15
/**
16
 * Class ConnectionTest
17
 * @package Ticaje\Connector\Test\Unit\Gateway\Authenticator
18
 */
19
class AuthTest extends BaseTest
20
{
21
    public function setUp()
22
    {
23
        parent::setUp();
24
    }
25
}
26