Completed
Push — master ( 4813ce...0bf679 )
by AJ
06:13
created

ShopifyAuthAuthenticateTest::testLogout()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
/**
3
 * CakePHPify : CakePHP Plugin for Shopify API Authentication
4
 * Copyright (c) Multidimension.al (http://multidimension.al)
5
 * Github : https://github.com/multidimension-al/cakephpify
6
 *
7
 * Licensed under The MIT License
8
 * For full copyright and license information, please see the LICENSE file
9
 * Redistributions of files must retain the above copyright notice.
10
 *
11
 * @copyright (c) Multidimension.al (http://multidimension.al)
12
 * @link      https://github.com/multidimension-al/cakephpify CakePHPify Github
13
 * @license   http://www.opensource.org/licenses/mit-license.php MIT License
14
 */
15
16
namespace Multidimensional\Cakephpify\Test\TestCase\Auth;
17
18
use Cake\TestSuite\TestCase;
19
use Multidimensional\Cakephpify\Auth\ShopifyAuthAuthenticate;
20
21
class ShopifyAuthAuthenticateTest extends TestCase
22
{
23
24
    public function setUp()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
25
    {
26
        parent::setUp();
27
    }
28
    
29
    public function testAuthenticate()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
30
    {
31
        $this->markTestIncomplete('Not implemented yet.');
32
    }
33
    
34
    public function testUnauthenticated()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
35
    {
36
        $this->markTestIncomplete('Not implemented yet.');
37
    }
38
    
39
    public function testGetUser()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
40
    {
41
        $this->markTestIncomplete('Not implemented yet.');
42
    }
43
    
44
    public function testImplementedEvents()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
45
    {
46
        $this->markTestIncomplete('Not implemented yet.');
47
    }
48
    
49
    public function testAfterIdentify()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
50
    {
51
        $this->markTestIncomplete('Not implemented yet.');
52
    }
53
    
54
    public function testLogout()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
55
    {
56
        $this->markTestIncomplete('Not implemented yet.');
57
    }
58
    
59
}
60