AccessTokensTableTest   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 2
lcom 0
cbo 1
dl 0
loc 16
rs 10
c 0
b 0
f 0

2 Methods

Rating   Name   Duplication   Size   Complexity  
A setUp() 0 4 1
A testValidation() 0 4 1
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\Model\Table;
17
18
use Cake\TestSuite\TestCase;
19
use Multidimensional\Cakephpify\Model\Table\AccessTokensTable;
20
21
class AccessTokensTableTest extends TestCase
22
{
23
24
    public $fixtures = ['plugin.Multidimensional/Cakephpify.AccessTokens'];
25
26
    public function setUp()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
27
    {
28
        parent::setUp();
29
    }
30
    
31
    public function testValidation()
0 ignored issues
show
introduced by
Missing function doc comment
Loading history...
32
    {
33
        $this->markTestIncomplete('Not implemented yet.');        
0 ignored issues
show
introduced by
Double space found
Loading history...
34
    }
35
    
36
}
37