Completed
Push — master ( 5f86bb...797bc6 )
by Beñat
04:08
created

InvalidateTest   A

Complexity

Total Complexity 4

Size/Duplication

Total Lines 18
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 4
lcom 0
cbo 1
dl 0
loc 18
rs 10
c 0
b 0
f 0

4 Methods

Rating   Name   Duplication   Size   Complexity  
A testInvalidated() 0 3 1
A testInvalidatedReturningAccessTokenObject() 0 3 1
A testInvalidatedWithAuth() 0 3 1
A testInvalidatedWithAuthAndReturningAccessTokenObject() 0 3 1
1
<?php
2
3
/*
4
 * This file is part of the Stack Exchange Api Client library.
5
 *
6
 * (c) Beñat Espiña <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
declare(strict_types=1);
13
14
namespace Test\BenatEspina\StackExchangeApiClient\AccessToken;
15
16
/**
17
 * @author Beñat Espiña <[email protected]>
18
 */
19
class InvalidateTest extends \PHPUnit_Framework_TestCase
20
{
21
    public function testInvalidated() : void
22
    {
23
    }
24
25
    public function testInvalidatedReturningAccessTokenObject() : void
26
    {
27
    }
28
29
    public function testInvalidatedWithAuth() : void
30
    {
31
    }
32
33
    public function testInvalidatedWithAuthAndReturningAccessTokenObject() : void
34
    {
35
    }
36
}
37